Formulas

W

wendyedw

I am looking for a formula where I can add two columns of numbers and have
the total in a cell next to these two columns.
 
D

David Biddulph

=A1+B1, and copy down, if you want to do each row separately.
=SUM(A:A,B:B) if you want the totals including all the rows.
 
Top