Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Developing Aging report-problem with 'if' statement

I am trying to come up a formula that will look across a row to
1.) see if the cell in N for that row is empty and
2.) if it is empty to look at the date in colum g and
3.)if the date is more than 30, 31-60, etc days past today return the amount
in H to the corresponding cell in J.
Currently, if I enter the formula on each row I am able to display the
correct information but I am hoping to be able to come up with a way to just
have to enter one formula for the entire column. There will be information
added to the worksheet and as cells are populated in column N it will change
the later aging.

Any help is greatly appreciated

Becky


G H I J K
L N
Due Date Amt Current 30 31-60 61-90
Paid Date
2/8/2009 154.00 154.00
2/9/2009 1427.95 1427.95
3/16/2009
2/18/2009 100.00 100.00
5/1/2009
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 915
Default Developing Aging report-problem with 'if' statement

Bsting wrote:
I am trying to come up a formula that will look across a row to
1.) see if the cell in N for that row is empty and
2.) if it is empty to look at the date in colum g and
3.)if the date is more than 30, 31-60, etc days past today return the amount
in H to the corresponding cell in J.
Currently, if I enter the formula on each row I am able to display the
correct information but I am hoping to be able to come up with a way to just
have to enter one formula for the entire column. There will be information
added to the worksheet and as cells are populated in column N it will change
the later aging.

Any help is greatly appreciated

Becky


G H I J K
L N
Due Date Amt Current 30 31-60 61-90
Paid Date
2/8/2009 154.00 154.00
2/9/2009 1427.95 1427.95
3/16/2009
2/18/2009 100.00 100.00
5/1/2009



I'm not certain I interpreted your example correctly due to line
wrapping. Hopefully this gives you some ideas.

The solution is made simpler by placing a row of values somewhere that
correspond to the aging buckets. E.g., insert in row 2:

J K L
insert row of values -- 0 31 61
<30 31-60 61-90

....where the values are the lowest numbers that qualify for the range in
question.

Also, for ease of example, calculate the age of the claim in some
convenient column. I used Q:

Q4 = TODAY()-G4

Let's say you want a formula to fill the aging buckets in J4:L6. In J4,
fill down and right:

=MATCH($Q4,$J$2:$L$2,1)

This says which bucket the age (in Q) belongs in because MATCH returns
the placement of the largest item in row 2 not exceeding the age.

Expand on that with this new formula in J4 (fill right and down):

=IF(COLUMN()-10=MATCH($Q4,$J$2:$L$2,1),$H4,0)

Now if the column number less 10 (assuming you are starting in column J)
equals the bucket assignment, grab column H, else put 0.
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
AR Aging Report Design Issue AutoMagic Excel Discussion (Misc queries) 2 February 5th 09 05:02 PM
Aging Report Abdul Shakeel Excel Discussion (Misc queries) 1 March 12th 08 01:25 PM
Organization of Aging Report leonardoromero Excel Discussion (Misc queries) 2 June 12th 07 10:00 PM
creating an aging report PSikes Excel Worksheet Functions 10 December 17th 06 03:52 PM
Help with Aging Report KimberlyL Excel Worksheet Functions 2 May 26th 05 07:48 PM


All times are GMT +1. The time now is 10:24 PM.

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

About Us

"It's about Microsoft Excel"