Thanks much for your reply, but I'm afraid I wasn't very clear. Let me have
another go at it...
(If the layout gets whacked in the posting, then a copy/paste to Notepad
ought to fix it up)
A, B and C remain the same as before, but what I failed to mention is that
each row is a different department for which I need a cumulative total.
Comme ca:
+ A + B + C +
____________________________________________________________________
1| DeptName | Today's Miles | Monthly Miles |
2| Dept1 | 10 | 150 |
3| Dept2 | 23 | 120 |
4| Dept3 | 15 | 100 |
etc.........
I'd like to be able to type a new number into B2 tomorrow (say, 25) and have
it increment the value in C2 (to 175, in this case). Then on Thursday,
enter that day's mileage number and again, have C2 add that mileage to the
175 that now resides there.
In other words, as the monthly miles are accumulated, I don't care to keep
the daily figures. The one column to enter each day's mileage is fine.
I've a workaround that involves using another worksheet, two tiled windows
and a .xlw (workspace) file. I'd rather keep it simple, however.
BondG
Dave R. said:
This approach should work:
A1: Time1
B1: 15
C1: 15 (running total)
A2: Time2
B2: 20
C2: =C1+B2 (running total adding most recent mileage [B2] to previous
running total, use this formula the rest of the way down)
Copy C2 down for as many times as you have.
I have three columns; A, B and C.
A is simply labels, B is a daily mileage figure and C is the running sum
of
this daily mileage. Is there a formula (or some method) that will allow
me
to keep this simple three column format and still accumulate mileage in
column C?
Thanks for any words of wisdom.
BondG