We have to keep track of daily mileage for our fleet vehicles. I am keeping monthly totals which are calculated at the end of the month. They are based on the driver's daily entries. I want the monthly mileage to be cumulative as the month progresses.
But I also want to keep a yearly cummulative count as well. Right now, that count is "0" until the end of the year.
My "Vehicle Info" column has basically all this statistical information we collect. The beginning and ending monthly mileage numbers are basically referencing other cells.
Current Monthly Formula (ending mileage minus beginning mileage):
=SUM([Vehicle Info]22 - [Vehicle Info]24)
Current Yearly Formula (adding the totals of every month's total):
=SUM([Vehicle Info]19 + [Vehicle Info]44 + [Vehicle Info]72 + [Vehicle Info]103 + [Vehicle Info]133 + [Vehicle Info]133 + [Vehicle Info]164 + [Vehicle Info]194 + [Vehicle Info]225 + [Vehicle Info]256 + [Vehicle Info]286 + [Vehicle Info]317 + [Vehicle Info]347)
—————————————
I'm seeing options for column counts where all the row values are together, but these cells are sporadic among several hundred.
I've also seen the row ID and text column additions to the sheet. I guess I don't know how to implement them here.
Any help would be great!