How do I add formulas from sheet to sheet within the same workboo.

R

Ragdyer

Enter the name of the sheet that the cell is in, in front of the cell
reference.

For example, with this formula on Sheet1,
to add A1 from Sheet1 to C1 from Sheet2:

=A1+Sheet2!C1
OR
=SUM(A1,Sheet2!C1)
 
Top