Share via

Adding values from different tabs

Anonymous
2010-11-18T22:34:40+00:00

Is there simple formula to add values from different tabs. My formula now looks something like this...=(tab1: cell a2+tab2:cell a2)

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2010-11-18T22:37:00+00:00

Is there simple formula to add values from different tabs. My formula noe looks something like this...=(tab1: cell a2+tab2:cell a2)

Try this formula:

=tab1!A2+tab2!A2

Hope this helps / Lars-Åke

Was this answer helpful?

3 people found this answer helpful.
0 comments No comments

Answer accepted by question author

Ashish Mathur 101.9K Reputation points Volunteer Moderator
2010-11-18T23:43:45+00:00

Hi,

If you want to pick up the same cell from each tab, try this

=sum(first_tab:last_tab!A2)

So in your case it would be

=sum(tab1:tab2!A2)

Regards,

Ashish Mathur

Microsoft Excel MVP

www.ashishmathur.com

"DAS Tony G" wrote in message news:a03b1540-07f7-4f6e-81c7-64582f792106...

Is there simple formula to add values from different tabs. My formula now looks something like this...=(tab1: cell a2+tab2:cell a2)


Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com

Was this answer helpful?

0 comments No comments

8 additional answers

Sort by: Most helpful
  1. Anonymous
    2015-07-09T18:57:37+00:00

    OK, I think you need to type it like this:

    =SUM('Cad1:Cad18'!J60)

    You need the apostrophes as you have sheet names than can be confused with column names.

    Hope this helps / Lars-Åke

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2015-07-08T12:37:05+00:00

    Try to replace the formula

    =sum('Cad1'!J60:'Cad18'!J60)

    with this formula:

    =sum('Cad1':'Cad18'!J60)

    or simply, as you don't have any space characters in your sheet names:

    =sum(Cad1:Cad18!J60)

    Hope this helps / Lars-Åke 

    When I type like =sum(Cad1:Cad18!J60) the program automatically transforms it into =sum(CAD1:'Cad18'!J60) and still gives me no answer. Samefor the last option.

    Was this answer helpful?

    0 comments No comments