0
Anonymous
Basically you can either add values individually, including cells:
= 1 + 2 + 3
or, to add values in cells:
= A1 + A2 + A3
Or, you can add a range of numbers, stored in adjacent cells, with the sum() function:
= SUM(A1:A10)
Wiki User