0

In Google Sheets I want to get the sum of the first 2 columns and display that result in the 3rd column all the way down. Like this:

enter image description here

I'm hoping for a solution that does this in one step. As I have many rows.

Edit: I am aware of this question: Apply formula to the entire column and it appears to only cover part of what I am asking.

Community
  • 1
  • 1

1 Answers1

0

Try:

=arrayformula(if(A2:A<>"",ADD(A2:A,B2:B),""))
Ed Nelson
  • 10,015
  • 2
  • 27
  • 29