You can add a sum in Google Sheets by using the SUM
function. There are a few ways to do this:
Using the SUM
Function Directly
- Select the cell where you want the sum to appear.
- Type
=SUM(
(that's an equals sign, followed bySUM
, followed by an open parenthesis). - Select the range of cells you want to add. You can do this by:
- Clicking and dragging your mouse over the cells.
- Typing the cell range manually (e.g.,
A1:A10
). - Clicking on individual cells while holding down the
Ctrl
(orCmd
on Mac) key. This allows you to sum non-contiguous cells.
- Type
)
(a closing parenthesis). - Press
Enter
.
Example: To sum the values in cells A1 through A10, you would enter =SUM(A1:A10)
into the desired cell and press Enter
.
Using the "Insert Function" Option
- Select the cell where you want the sum to appear.
- Click on the "Insert" menu in the top toolbar.
- Select "Function"
- Choose "SUM" from the list of available functions, or search for "SUM".
- A formula bar will appear. Select the cells you wish to add, using the same methods as described above.
- Press
Enter
.
Example using individual cells
To sum the values in cells A1, A3, and A5, you would enter =SUM(A1,A3,A5)
into the desired cell and press Enter
.