#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,560
Default Sumifs

Hi,

I link sumifs function to another worksheet and whenever I recalculate the
sheet with the sumifs functions with the linked pages closed, I get the
#VALUE! error. Any idea how to avoid this error and have the function either
pull the data or keep what ever answers I had in the cell before it was
updated?

Thank you,
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Sumifs

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I recalculate the
sheet with the sumifs functions with the linked pages closed, I get the
#VALUE! error. Any idea how to avoid this error and have the function
either
pull the data or keep what ever answers I had in the cell before it was
updated?

Thank you,



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,560
Default Sumifs

I see where you're going with the sumproduct, but that's not exactly what i
need. I'm trying to match

"T. Valko" wrote:

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I recalculate the
sheet with the sumifs functions with the linked pages closed, I get the
#VALUE! error. Any idea how to avoid this error and have the function
either
pull the data or keep what ever answers I had in the cell before it was
updated?

Thank you,




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Sumifs

Whatever you use SUMIF/SUMIFS to do you can use SUMPRODUCT to do.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
I see where you're going with the sumproduct, but that's not exactly what i
need. I'm trying to match

"T. Valko" wrote:

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I recalculate
the
sheet with the sumifs functions with the linked pages closed, I get the
#VALUE! error. Any idea how to avoid this error and have the function
either
pull the data or keep what ever answers I had in the cell before it was
updated?

Thank you,






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,560
Default Sumifs

This is my current sumifs formula:

=SUMIFS('[4-204 1208.xls]JE DATA'!$E:$E,'[4-204 1208.xls]JE
DATA'!$B:$B,A5,'[4-204 1208.xls]JE DATA'!$C:$C,$F$2)

It currently works as is, but i'd like to see try this Sumproduct function
sounds like a better solution.

Thanks,

David

"T. Valko" wrote:

Whatever you use SUMIF/SUMIFS to do you can use SUMPRODUCT to do.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
I see where you're going with the sumproduct, but that's not exactly what i
need. I'm trying to match

"T. Valko" wrote:

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I recalculate
the
sheet with the sumifs functions with the linked pages closed, I get the
#VALUE! error. Any idea how to avoid this error and have the function
either
pull the data or keep what ever answers I had in the cell before it was
updated?

Thank you,








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Sumifs

The SUMPRODUCT version would be:

=SUMPRODUCT(--('[4-204 1208.xls]JE DATA'!$B:$B=A5),--('[4-204 1208.xls]JE
DATA'!$C:$C=$F$2),'[4-204 1208.xls]JE DATA'!$E:$E)

Although you can use entire columns as range references with SUMPRODUCT in
Excel 2007 (only) I still wouldn't do it if you're not using all 1,000,000+
rows for data. I'd use the smallest specific range needed.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
This is my current sumifs formula:

=SUMIFS('[4-204 1208.xls]JE DATA'!$E:$E,'[4-204 1208.xls]JE
DATA'!$B:$B,A5,'[4-204 1208.xls]JE DATA'!$C:$C,$F$2)

It currently works as is, but i'd like to see try this Sumproduct function
sounds like a better solution.

Thanks,

David

"T. Valko" wrote:

Whatever you use SUMIF/SUMIFS to do you can use SUMPRODUCT to do.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
I see where you're going with the sumproduct, but that's not exactly
what i
need. I'm trying to match

"T. Valko" wrote:

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I
recalculate
the
sheet with the sumifs functions with the linked pages closed, I get
the
#VALUE! error. Any idea how to avoid this error and have the
function
either
pull the data or keep what ever answers I had in the cell before it
was
updated?

Thank you,








  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,560
Default Sumifs

Sorry about that, i pressed post too early. What i'm trying to do is match a
specfic store in my company with a specific account and there are multiple
accounts in this list for each store.

"David" wrote:

I see where you're going with the sumproduct, but that's not exactly what i
need. I'm trying to match

"T. Valko" wrote:

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I recalculate the
sheet with the sumifs functions with the linked pages closed, I get the
#VALUE! error. Any idea how to avoid this error and have the function
either
pull the data or keep what ever answers I had in the cell before it was
updated?

Thank you,




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Sumifs

Post the *exact* SUMIF/SUMIFS formula you are trying to use.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Sorry about that, i pressed post too early. What i'm trying to do is match
a
specfic store in my company with a specific account and there are multiple
accounts in this list for each store.

"David" wrote:

I see where you're going with the sumproduct, but that's not exactly what
i
need. I'm trying to match

"T. Valko" wrote:

SUMIF/SUMIFS don't work on closed files. Use SUMPRODUCT instead.

--
Biff
Microsoft Excel MVP


"David" wrote in message
...
Hi,

I link sumifs function to another worksheet and whenever I
recalculate the
sheet with the sumifs functions with the linked pages closed, I get
the
#VALUE! error. Any idea how to avoid this error and have the
function
either
pull the data or keep what ever answers I had in the cell before it
was
updated?

Thank you,





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
SUMIFS Steen Excel Worksheet Functions 5 November 2nd 08 03:38 PM
SUMIFS and OR mohavv Excel Discussion (Misc queries) 4 January 30th 08 04:02 PM
SUMIFS Mark Excel Discussion (Misc queries) 3 November 28th 07 12:09 PM
SUMIFS and OR M.S. Westerbeek Excel Worksheet Functions 6 August 23rd 07 07:24 PM
SumIfs timson Excel Discussion (Misc queries) 3 January 26th 07 07:46 PM


All times are GMT +1. The time now is 02:26 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"