aging category calculation for open purchase order report in Excel

  • Thread starter Thread starter Dan gibbs
  • Start date Start date
D

Dan gibbs

Hi,

i want to create a report in excel 2007 that allows me to allocate a 'group'
(embedded in the formula) in a single column how old a particular line on a
purchase order is. Here is some sample data with the expected results;

PO Age
91
30
-4
52

the groups are: Future (less than zero, 0-30,31-60,61-90,90+)

Expected Results:
PO Age AGE
91 90+
30 0-30
-4 FUTURE
52 31-60

THANKS in advance!!!
 
I couldn't understand what are you intending to do.
Could please give more explanation?
 
Hi,

In range D7:E10, enter data as follows

0 0-30
31 31-60
61 61-90
91 90+

Now assuming you have 91,30,-4,52 entered in D14:D17, enter the following
formula in cell E14 and copy downwards

=IF(D14<0,"Future",VLOOKUP(D14,$D$7:$E$10,2))


--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 
Back
Top