Multi Sheets

mcgrath1980

New Member
Joined
Jan 17, 2019
Messages
12
Hi

I am using the following SUMIF('01012019'!$I$1:$I$1000,"GRID",'01012019'!$F$1:$F$1009)

I need to pick up info from each tab on my sheet dating 01012019 to 31012019.

my question is : Is there an easy way to do this ?? Or would I have to go into every sheet.


Thanks
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I need to pick up info from each tab on my sheet dating 01012019 to 31012019.

Hi - do you mean you want to perform the same SUMIF() across all the sheets and return the SUM() of all of those in a single formula?

If so, and assuming your sheet names are exactly as you have shown and they represent the ddmmyyyy of a date, you could try:

Rich (BB code):
=SUMPRODUCT(SUMIF(INDIRECT(TEXT(ROW(INDIRECT(DATE(2019,1,1)&":"&DATE(2019,1,31))),"ddmmyyyy")&"!$I$1:$I$1000"),"GRID",INDIRECT(TEXT(ROW(INDIRECT(DATE(2019,1,1)&":"&DATE(2019,1,31))),"ddmmyyyy")&"!$F$1:$F$1009")))

Where the red parts represent the range of dates you are interested in.

FYI, this is often referred to as a "3D SUMIF" - if you wanted to do some googling.
 
Last edited:
Upvote 0
Yes that what I am looking for, I wasn't sure if there was a way of doing this without going through the process of keying in the full text

thanks very much for replying
 
Upvote 0
The date I am referring to is actually sheet 2 to sheet 31 I have just renamed them by date.

And I a looking to pull the information back to sheet 1 which will be my reference sheet or dashboard sheet
 
Upvote 0
That doesn't seem to be working for me.

I don't think I have explained my example correctly at first.

I have the following feeding back my sheet 1 for each tab, Could this be put all together 010119 to 310119 ???

SUMIF('020119'!I2:I1000,"GRID",'020119'!F1:F1009)



SUMIF('010119'!I2:I1000,"GRID",'010119'!F1:F1009)

 
Upvote 0
That doesn't seem to be working for me.

Hi, could you try to describe "doesn't seem to be working" in a little more detail?

- Do you get an error? if so, what error?
- Do you get an unexpected result? If so, what do you get and how does it differ to what you expect? Try to post a scaled down example that demonstrates the problem?
- Something else? If so - details?
 
Upvote 0
Sorry when I input SUMPRODUCT(SUMIF(INDIRECT(TEXT(ROW(INDIRECT(DATE(2019,1,1)&":"&DATE(2019,1,31))),"ddmmyyyy")&"!$I$1:$I$1000"),"GRID",INDIRECT(TEXT(ROW(INDIRECT(DATE(2019,1,1)&":"&DATE(2019,1,31))),"ddmmyyyy")&"!$F$1:$F$1009")))

it returns #REF
 
Upvote 0
Last edited:
Upvote 0

Forum statistics

Threads
1,214,638
Messages
6,120,676
Members
448,977
Latest member
moonlight6

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