View Single Post
  #3   Report Post  
JE McGimpsey
 
Posts: n/a
Default

one way:

='tab 1'!A2 + 'tab 2'!A2

(where "tab 1" and "tab 2" are the names of the worksheets in the same
workbook).

You could also use something like:

=SUM('tab 1:tab 2'!A2)

Note that this formula will include any worksheets from tab 1 to tab 2,
left-to-right, inclusive, so if tab 3 were moved between tab 1 and tab
2, tab 3's A2 would be summed as well.



In article ,
Flipkid2
wrote:

Is there a way to add values from different tabs on the same
spreadsheet?

For example A2 from tab 1 and A2 from tab 2