Excel doesn't calculate totals correctly

  • Thread starter Thread starter Joe
  • Start date Start date
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.
 
Joe

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

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

Gord Dibben XL2002
 
Back
Top