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

Table Sum across Multiple Sheets

Zubair Ahmed

New Member
Been trying to work out how to add a 2-D range across multiple sheets where columns are the same on all of the sheets, however the rows may be different. eg on sheet 1 rows may be eg A, B, C, D and on sheet 2 the rows may only include, for instance, A, C, E etc. Task is to summarise and add these ranges in a 3rd sheet with all inclusive rows from sheet 1 and 2. Have tried Index, Match etc, however cant work it out. Is there a smart formula or a combination of index, match, lookup etc that can perform this task? Thanks
 
Hi Zubair Ahmed,


Welcome to the Chandoo's forum!! You meant to say that columns will be the same and the rows could be different? Have you tried using
Code:
SUMIF( ) + SUMIF( )...
?


Regards,

Faseeh
 
Hi, Zubair Ahmed!


I'd recommend you to read the three first green sticky topics at this forums main page. There you'll find general guidelines about how this site and community operates (introducing yourself, posting files, netiquette rules, and so on).

Among them you're prompted to perform searches within this site before posting, because maybe your question had been answered yet.

Feel free to play with different keywords so as to be led thru a wide variety of articles and posts, and if you don't find anything that solves your problem or guides you towards a solution, well, come back here, tell us what you've done, consider uploading a sample file as recommended, and somebody surely will read your post and help you.


And about your question, you say that columns are the same on all sheets and you're referring to rows as A, B, C, D and A, C, E, but this are column references. Could you please clarify this? Consider uploading a sample file as described in the green sticky topics.

Despite of that, the general formula for summing the same range in many sheets is like this:

=SUM(SheetFrom:SheetTo!RangeFrom:RangeTo)

where RangeFrom and to might be cell references (A1:B10), row references (1:10), column references (A:B).


Regards!
 
Back
Top