Home > database >  How do I sum a row that I keep adding new data to on the left side?
How do I sum a row that I keep adding new data to on the left side?

Time:11-30

I am trying to create a formula that totals the number of tardies for a student in column b when I insert a new column each day between column b and c (see example sheet enter image description here

CodePudding user response:

use this:

=SUM(INDIRECT("C2:2"))
  • Related