SUM a same cell in the RANGE of sheets using SUMPRODUCT(SUMIF(INDIRECT

Tatiana_k

New Member
Joined
Sep 16, 2014
Messages
23
Office Version
  1. 2010
Platform
  1. Windows
Hi guys,

I need to sum all A1 across many sheets with daily data and then put the result in summary sheet and apply this formula to 365 rows in the column.

The formula works if the name of sheets in sequence is number. Number of the sheets with Data set in F1

=SUMPRODUCT(SUMIF(INDIRECT("'*"&ROW(INDIRECT("1:"&F1))&"'!A1"),"<>0"))

But my first sheet is called Summary, second sheet is called Data and the formula stops working.

Would anyone have a tip on how to solve this issue?

Thanks in advance
 
Tatiana_k,

I'm not sure if I've followed correctly but it appears you want to populate column C with column P and same row but across a number of worksheets which are numbered 1, 2, 3, etc.
You have found =SUM('1:10'!P7) works for C7 and when copied down, but you want to have that end sheet 10 as a variable specified in E4.

For test data I've just populated all the numeric sheet names column P with its row number and =SUM('1:10'!P7) works.
1635103334115.png


If I want to limit the sheets summed then doesn't this work?

Excel Formula:
=SUMPRODUCT(SUMIF(INDIRECT("'*"&ROW(INDIRECT("1:"&$E$4))&"'!P"&ROW()),"<> "))

Tatiana_k-2.xlsx
ABCDEFGHI
1
2
3
47
5EquipmentSerial NumberB/D HoursTarget HoursRunning HoursAvailability, %DOH vsTarget hrsEstimated Utilisation, %Est S/B Hours
6HAULING MINING RDT's (773)
7004916800.7083300119
8005616800.6666700112
9006316800.62500105
10007016800.583330098
11007716800.541670091
12008416800.50084
13009116800.458330077
14009816800.416670070
150010516800.3750063
160011216800.333330056
170011916800.291670049
180012616800.250042
Summary
Cell Formulas
RangeFormula
A7:B18A7='10'!A7
C7:C18C7=SUMPRODUCT(SUMIF(INDIRECT("'*"&ROW(INDIRECT("1:"&$E$4))&"'!P"&ROW()),"<> "))
D7:D18D7=$E$4*24
E7:E18E7=INDIRECT(E$4&"!"&CELL("address",D7))-'1'!C7
F7:F18F7=(D7-C7)/D7
G7:G18G7=E7/D7
H7:H18H7=IFERROR(E7/(D7-C7),"")
I7:I18I7=D7-C7-E7
 
Upvote 0

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.
That's because you've told the formula to do that. with "4:" if you use "1:" then it will go from the first sheet.

It is not suddenly going to become possible because it is what you need. As I said above, you will need a list for the sheets that are not in a numeric sequence. Without a list of those sheet names you are limited to the options in post 6.
That's because you've told the formula to do that. with "4:" if you use "1:" then it will go from the first sheet.

It is not suddenly going to become possible because it is what you need. As I said above, you will need a list for the sheets that are not in a numeric sequence. Without a list of those sheet names you are limited to the options in post 6.
“That's because you've told the formula to do that with "4:" if you use "1:" then it will go from the first sheet.”
Right, If I put 1; it doesn’t work because first sheet’s name is not numeric.

I think the problem is in the syntax.It' hardly asking too much. As you can see the formula works without list. I just don’t know how you can skip the first sheets with the different name.
I use to do it in VBA, but they I asked me to do it without macro.
 
Upvote 0
I think the problem is in the syntax.It' hardly asking too much.
The problem is you not listening to advice because the advice given doesn't comply with your exact requirements.

You can NOT refer to a sheet by position, you can ONLY refer to it by name. If that name is not a number then you need to use the actual name instead of INDIRECT(ROW( to create an array. The only way to refer to those sheets by name in this type of formula is to use a list. You could try adding that list directly to the formula using an array constant which may or may not work, but however you do it there needs to be a list somewhere.

It is plain and simple, not rocket science. If you don't want to take my word for it then there are consultants out there who do this for a living and will quite happily charge you upwards of $200 / hr to tell you the same thing.
 
Upvote 0
The problem is you not listening to advice because the advice given doesn't comply with your exact requirements.

You can NOT refer to a sheet by position, you can ONLY refer to it by name. If that name is not a number then you need to use the actual name instead of INDIRECT(ROW( to create an array. The only way to refer to those sheets by name in this type of formula is to use a list. You could try adding that list directly to the formula using an array constant which may or may not work, but however you do it there needs to be a list somewhere.

It is plain and simple, not rocket science. If you don't want to take my word for it then there are consultants out there who do this for a living and will quite happily charge you upwards of $200 / hr to tell you the same thing.
The problem is you not listening to advice because the advice given doesn't comply with your exact requirements.

You can NOT refer to a sheet by position, you can ONLY refer to it by name. If that name is not a number then you need to use the actual name instead of INDIRECT(ROW( to create an array. The only way to refer to those sheets by name in this type of formula is to use a list. You could try adding that list directly to the formula using an array constant which may or may not work, but however you do it there needs to be a list somewhere.

It is plain and simple, not rocket science. If you don't want to take my word for it then there are consultants out there who do this for a living and will quite happily charge you upwards of $200 / hr to tell you the same thing.


Ok, thank you.

However, in my formula I refer to sheet position and not to name and it works. I will dig fewer and let you know. I’m consultant myself, but in VBA. It’s my first experience in the MS Excel.
 
Upvote 0
in my formula I refer to sheet position and not to name and it works.
No, you don't. You might think that it is what you have done but you can NOT refer to a sheet by position in any formula. That can only be done with vba.
 
Upvote 0
Tried editing my last reply but reached the time limit before I could save it.

Repeating what I said earlier, it 'might' work with an array constant. Common practice is to use a list of sheet names in a sheet somewhere, as you are unwilling to do that we venturing into unknown territory in order to accommodate your eccentricities.

Note that this is for 3 sheets not in the numeric sequence, {"Data","Summary","Weekly"} edit as needed.

You will see +3 in 2 places in the formula, if there are more or less than 3 sheets not in the numeric sequence then these points will need to be changed to reflect the correct number.
If it returns an error then try changing the commas in the array of sheet names to semicolons.
Excel Formula:
=SUMPRODUCT(SUMIF(INDIRECT("'"&IF(ROW(INDIRECT("1:"&$E$1+3))>$E$1,INDEX({"Data","Summary","Weekly"},ROW(INDIRECT("1:"&$E$1+3))-$E$1),ROW(INDIRECT("1:"&$E$1)))&"'!A1"),"<>0"))
If it doesn't work this way then it will not work at all!
 
Upvote 0
Tried editing my last reply but reached the time limit before I could save it.

Repeating what I said earlier, it 'might' work with an array constant. Common practice is to use a list of sheet names in a sheet somewhere, as you are unwilling to do that we venturing into unknown territory in order to accommodate your eccentricities.

Note that this is for 3 sheets not in the numeric sequence, {"Data","Summary","Weekly"} edit as needed.

You will see +3 in 2 places in the formula, if there are more or less than 3 sheets not in the numeric sequence then these points will need to be changed to reflect the correct number.
If it returns an error then try changing the commas in the array of sheet names to semicolons.
Excel Formula:
=SUMPRODUCT(SUMIF(INDIRECT("'"&IF(ROW(INDIRECT("1:"&$E$1+3))>$E$1,INDEX({"Data","Summary","Weekly"},ROW(INDIRECT("1:"&$E$1+3))-$E$1),ROW(INDIRECT("1:"&$E$1)))&"'!A1"),"<>0"))
If it doesn't work this way then it will not work at all!
Thanks again Jason. I've tried your formula. It return the value 4 in the cell A4. It only takes the value from the "1" sheet and doesn't sum the values from other numeric sheets. I tried all combination.
The values in the numeric sheets are as follows :
1 sheet -4
2 sheet -1
3 sheet-2
4 sheet -5
5 sheet -3
6 sheet -2
1635155772862.png

My formula return the value 10 in the cell A2. It summarises the values from 4 to 6 sheets.

1635156136074.png
 
Upvote 0
Why have you changed +3 to +4 when there are only 3 named sheets?
You will see +3 in 2 places in the formula, if there are more or less than 3 sheets not in the numeric sequence then these points will need to be changed to reflect the correct number.
Once you have corrected that, try array confirming the formula with Ctrl Shift Enter.
 
Upvote 0
Why have you changed +3 to +4 when there are only 3 named sheets?

Once you have corrected that, try array confirming the formula with Ctrl Shift Enter.
I've got the same result. As I said I've tried all combination with your formula, changing also the cell E1 to F1 etc.., stil the result 4.
1635161604374.png
 
Upvote 0
As far as I can see you haven't array confirmed it as previously suggested.

Click on the cell, press the f2 key, then press shift ctrl and enter together (in the same way that you would use ctrl alt delete to open task manager).

I tested it in office 365 prior to posting the formula and it worked correctly. If it does not work for you when it is entered correctly then that means that it will not work with your version of excel without using some brute force methods (that may or may not work) that I will not be able to help you with as I do not have the same version of excel to test them on.

That leaves you with the options that I previously stated which you have dismissed as not suitable.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,700
Messages
6,126,301
Members
449,308
Latest member
VerifiedBleachersAttendee

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