If it helps
I can see what your formula is doing to the numbers. It is only calculating
a cumulative total for dates that are the same e.g. on the 2/2/2002 below
3/5/2003 4 4
2/2/2002 5 5
2/2/2002 1 6
8/9/2004 9 9
6/7/2003 2 2
whereas I want a cumulative value displayed in each row by date order
(below)
3/5/2003 4 10 (third number to add)
2/2/2002 5 5 (first number to use)
2/2/2002 1 6 (second number to add)
8/9/2004 9 21 (fifth number to add)
6/7/2003 2 12 (fourth number to add)
Thank you
Ian
"mantrid" <(E-Mail Removed)> wrote in message
news:3nNTh.33$(E-Mail Removed)...
> Hi
> Thanks for that
> Doesnt seem to work. That numbers are not being added up correctly. Would
> you be able to explain what the formula is doing step by step and maybe I
> can see why it isnt working for me
> Thanks for your time
> Ian
>
> "Mike" <(E-Mail Removed)> wrote in message
> news
348023A-215C-4A10-AFA9-(E-Mail Removed)...
> > Try this Assuming that the category column is column A, the values
column
> is
> > column B, and the headings are in row 1, the running category total
> formula
> > at the top row is:
> > =SUMIF(INDIRECT("A2:A"&ROW()),"="&A2,INDIRECT("B2:B"&ROW()))
> > Copy the formula for all rows used.
> > "mantrid" wrote:
> >
> > > Can anyone help
> > > I have a list of numbers with an associated date in two coulmns which
> are
> > > NOT in date order. I wish to add up the numbers in date order creating
a
> > > cumulative total to be recorderd in a third cell on the line of the
> latest
> > > number added.
> > >
> > > looking something like
> > >
> > > 3/5/2003 4 9
> > > 2/2/2002 5 5
> > > 7/5/2007 1 21
> > > 8/9/2004 9 20
> > > 6/7/2003 2 11
> > >
> > > I have used VBA and can write functions if this is the best approach
> > > Thanks in advance
> > >
> > > Ian
> > >
> > >
> > >
>
>