Excel doesn't calculate totals correctly

J

Joe

The following formula returns the incorrect totals:

=sum(entry!i:i)+(entry!j:j)

it will calculate the total of column j from sheet entry
but not from column i on the same sheet.
 
G

Gord Dibben

Joe

Change to =sum(entry!i:i)+sum(entry!j:j)

Shorter would be =SUM(entry!J:K)

Gord Dibben XL2002
 
Top