• 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.

Extracting data from multiple worksheets

marcus

New Member
Hello,

I have searched the forum and have not not found an answer to my question, perhaps someone here can assist.

I am analyzing past monthly income statements (IS) and would like to extract certain values from all of the worksheets and put them in a summary worksheet.

Each IS is on its own tab. Each IS follows the same format. There are more than 60 with more added each month. The attached sample file is similar to what I am working with.

The summary worksheet has a list of all worksheets (formatted as "YYYY MM") and the data that I want to extract from the corresponding monthly IS (rows 1 and 2).

Any thoughts?

Thank you,

Marcus
 

Attachments

  • Sample File.xlsx
    10.3 KB · Views: 4
Hi,


Put any of the below in B3 & drag right/below.

=INDIRECT(ADDRESS(ROW(INDIRECT(B$2)),COLUMN(INDIRECT(B$2)),1,1,$A3))

=INDEX(INDIRECT("'"&$A3&"'!$B$3:$B$7"),MATCH(B$1,INDIRECT("'"&$A3&"'!A$3:$A$7"),0))
 
Deepak,

Thanks for the quick reply. The 'Address' function was key and the one I was looking for.

Marcus
 
Back
Top