I have got a spreadsheet in which I’ve deleted some rows (they’re not hidden).
Specifically rows 35, 36, & 37 have been deleted,
so the rows are numbered {1,2,3,…34, 38,39,40…}
I want to calculate the SUM total of a column like SUM(I1:I47) but this give me incorrect summation.
Workaround is to do something like this:
=SUM(I1:I34) + SUM(I38:I47)
At first I didn’t even notice the deleted rows and couldn’t figure out why summation was incorrect. Eventually I noticed that the row numbers weren’t sequential and there was a missing gap. I thought perhaps they were “hidden” but trying to “show” hidden rows doesn’t unhide any rows. The rows have been deleted.
I’d really like all the rows to be numbered sequentially, and if I insert a new row or delete the numbering of the rows should be adjusted to keep the numbering sequential with no missing gaps (or if there are gaps, then the SUM formula should be smart enough to realize that those rows don’t exist and to not include the missing rows in the summation).