Read the Running Total

Start with daily values in order: Mon, Tue, Wed, Thu. Each row adds to what came before. The running total is 2, then 5, then 6, then 10. This is only a readout of the pinned days. It is not a forecast.

A tiny running-sum readout: add each daily value to the total so far, then plot the cumulative total without making a forecast.

highlighted = computed this step

Load daily values

Start with 4 pinned daily values.

daily values\text{daily values}
Pinned Daily ValuesdayvalueMon2Tue3Wed1Thu4

Add each row

Add each row to the total so far: 2, then 5, then 6, then 10.

running sum\text{running sum}
Running Total by Rowdayvaluerunning totalMon22Tue35Wed16Thu410

Plot the running total

Plot the running total as 4 dots so the accumulation is visible.

running total dots\text{running total dots}
Running total over daysdayrunning total02468102Mon5Tue6Wed10Thufinal

Read the final total

Readout: the running total ends at 10 after Thu.

final running total\text{final running total}
Running Total Readoutsteprunning totalstartMon = 2after Tue2 + 3 = 5after Wed5 + 1 = 6after Thu6 + 4 = 10