Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 34
Default Aging Formula Help

I have a worksheet with column AD currently showing the number of days based
upon todays date they are past due. I have the following criteria that I
want the formula to return in column AC if the number in columns D is between
those numbers.

Days:
0-30
31-60
61-120
121-180
181-240
241-300
365+
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Aging Formula Help

=COUNTIF(AD:AD,"<=30")

=COUNTIF(AD:AD,"<=60")-COUNTIF(AD:AD,"<=30")

etc.

--
__________________________________
HTH

Bob

"klmiura" wrote in message
...
I have a worksheet with column AD currently showing the number of days
based
upon todays date they are past due. I have the following criteria that I
want the formula to return in column AC if the number in columns D is
between
those numbers.

Days:
0-30
31-60
61-120
121-180
181-240
241-300
365+



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Aging Formula Help

I assume you mean column AD and not D?


=VLOOKUP(AD1,{0,"0-30";31,"31-60";61,"61-120";121,"121-180";181,"181-300";241,"241-300";301,"365+"},2)


replace AD1 with the cell you want to use


copy down




--


Regards,


Peo Sjoblom




"klmiura" wrote in message
...
I have a worksheet with column AD currently showing the number of days
based
upon todays date they are past due. I have the following criteria that I
want the formula to return in column AC if the number in columns D is
between
those numbers.

Days:
0-30
31-60
61-120
121-180
181-240
241-300
365+



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,388
Default Aging Formula Help

Hi,
Modify your table to look like this:
AA_____AB
0______0-30
31_____31-60
61_____61-120
121____121-180
181____181-240
241____241-300
301____301-365
365____365+

If this table is in AA1:AA8, then:
=VLOOKUP(D2,$AA$1:$AA$8,2)

Regards - Dave.
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,836
Default Aging Formula Help

In A2:A8 put the following:
0
31
61
121
181
241
365

In D1, put this:
=IF(A2="","",SUM($A$2:A2)-A2+1&IF(A2=1,""," - "&SUM($A$2:A2)))

Fill down.

Regards,
Ryan---

--
RyGuy


"Dave" wrote:

Hi,
Modify your table to look like this:
AA_____AB
0______0-30
31_____31-60
61_____61-120
121____121-180
181____181-240
241____241-300
301____301-365
365____365+

If this table is in AA1:AA8, then:
=VLOOKUP(D2,$AA$1:$AA$8,2)

Regards - Dave.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Aging Formula Sue Excel Discussion (Misc queries) 5 May 2nd 08 10:49 PM
Aging Formula Steve Excel Discussion (Misc queries) 6 July 7th 07 12:24 AM
aging formula Drew Excel Discussion (Misc queries) 3 April 13th 07 11:12 PM
aging Rina Excel Worksheet Functions 2 October 23rd 06 05:50 PM
WHAT FORMULA DO I USE FOR AGING A STATEMENT ewalbers Excel Worksheet Functions 1 August 11th 06 05:41 PM


All times are GMT +1. The time now is 03:41 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"