#Value

megamind007

New Member
Joined
Sep 22, 2013
Messages
43
Hey folks,

=SUMIFS('June & Before:December'!F:F,'June & Before:December'!A:A,"1342-79002570",'June & Before:December'!C:C,"Payment",'June & Before:December'!I:I,"0-60 days")

whe the abovementioned formula is displaying value error.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
click on the cell with the formula

click the fx button at left end of formula bar

the popup dialog may point you to the source of the error


maybe the sum range is meant to be only one cell, not the whole column
 
Last edited:
Upvote 0
so the "function arguments" dialog box is showing expected values on right side?

nothing in red?
 
Upvote 0
Hi,

You cannot perform the 3D sum as you currently have it laid out. You would require (I am guessing at your other intermediary sheet names here):

=SUMPRODUCT(SUMIFS(INDIRECT("'"&{"June & Before","July","August","September","October","November","December"}&"'!F:F"),INDIRECT("'"&{"June & Before","July","August","September","October","November","December"}&"'!A:A"),"1342-79002570",INDIRECT("'"&{"June & Before","July","August","September","October","November","December"}&"'!C:C"),"Payment",INDIRECT("'"&{"June & Before","July","August","September","October","November","December"}&"'!I:I"),"0-60 days"))

Even better, since this is quite ungainly and inflexible, would be to go to Name Manager and create a new name, Sheet_Names say, with this in the Refers to: box:

={"June & Before","July","August","September","October","November","December"}

or whatever the actual sheets are in queston.

The formula then becomes:

=SUMPRODUCT(SUMIFS(INDIRECT("'"&Sheet_Names&"'!F:F"),INDIRECT("'"&Sheet_Names&"'!A:A"),"1342-79002570",INDIRECT("'"&Sheet_Names&"'!C:C"),"Payment",INDIRECT("'"&Sheet_Names&"'!I:I"),"0-60 days"))

That way, if ever you need to add/change/delete a sheet from the summation, you can simply make the necessary amendments in the defined name, and the formula will update accordingly.

Regards
 
Last edited:
Upvote 0
first off thanks alot as it worked for me,but if you could tell how "names manager" works.
much obliged,
thanks in anticipation,
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,255
Members
448,556
Latest member
peterhess2002

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top