Edward A. answered 06/13/19
Clear tutor: Excel formulas, graphs, pivot tables, macros, What-Ifs
Marques, Here are two somewhat different ways to do it: ( In what follows, type everything but the quote marks (“) )
1) using individual cells:
- into C7, type “=Sum(“
- click in C4, (this will append “C4” in C7)
- type “,”
- click in C5
- type “,”
- click in C6
- type “)”
this creates a formula in C7 that reads
“=sum(c4,c5,c6)
2) using a range
- in C7, type “=Sum(“
- click in C4, and drag to C6 ( this will append “C4:C6” to C7)
- type “)”
this creates a formula in C7 that reads
”=sum(C4:C6)
The first approach allows you to select cells that aren’t next to each other, while the second approach allows a shortcut, for when all the cells are contiguous.