> I am attempting to track mileage within an excel spreadsheet... with each
> entry being enter into the spreadsheet similar to that of a checkbook
[quoted text clipped - 3 lines]
> is how to have a running total of sorts whereby the last entry (be it 2 or
> 200 cells later) will have a total?
Or if the OP never leaves any blanks in-between one can use a dynamic range
click insert>name>define, give it a name like MyRange, in the Refers to box
put
=OFFSET(Sheet1!$D$1,,,COUNTA(Sheet1!$D:$D),)
click OK
then use
=SUM(MyRange)
which will adapt to any new entries in the D column
Regards,
Peo Sjoblom
> Hi
> Say your data is in columns A to D, and your mileages are in D, In cell E1,
[quoted text clipped - 13 lines]
> > is how to have a running total of sorts whereby the last entry (be it 2 or
> > 200 cells later) will have a total?
Michael - 27 May 2005 00:21 GMT
Good Point Peo.
However, I was sticking with KISS principle
Michael

Signature
Michael Mitchelson
> Or if the OP never leaves any blanks in-between one can use a dynamic range
> click insert>name>define, give it a name like MyRange, in the Refers to box
[quoted text clipped - 31 lines]
> > > is how to have a running total of sorts whereby the last entry (be it 2 or
> > > 200 cells later) will have a total?