• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Many Sheets Sum Data

First, thanks for reading my post.

I have 9 sheets in a spreadsheet. The year is in column A and the month is in row 1. All the sheets are laid out the same.

I have a summary sheet. You can select the month and year.

How do I get the numbers from sheets 1 thru 9 based on the selection of the month and year in the summary sheet?

So, if I select Jan 1988 how do I get the data from sheets 1 thru 9 that correspond to the intersection Jan 1988 from each sheet?

I have tried Indirect(Month) Indirect(Year) in each sheet but it does not work.

Thanks!

Mike
 
Hi Mike,

If you can upload a file it will be easier to see your data layout and somebody can give you a solution.

Regards,
 
Hi Misra / Mike ,

Try this :

=SUM(N(INDIRECT(SheetsList&"!"&"R"&MATCH($C$2,INDIRECT("'"&$B$8&"'!"&"A1:A17"),0)&"C"&MATCH($C$3,INDIRECT("'"&$B$8&"'!"&"A1:M1"),0),FALSE)))

entered as an array formula , using CTRL SHIFT ENTER ; SheetsList is a named range referring to the range B8:B9 which has the names of the individual sheets.

Narayan
 
OK here is the file.

I have not tried Narayan's formula yet but will.

I am trying to do this without having to name a bunch of ranges.

Thanks,

Mike
 

Attachments

  • Jobs Data V2.xlsx
    39.5 KB · Views: 2
Back
Top