Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default AR Aging Report Design Issue

I receive an AR report showing statements billed and payments made by
customers for the last 12 months. It also shows the current balance.
I have been asked to create an aging report that determines if any of
the current balance is 30, 60 or 90 days overdue. Statements and
Payments are on separate rows and can vary widely. For example one
report I saw showed 5 months unpaid and when the customer finally did
pay they only part of one bill. Accounting always pays the older bill
first. I understand how to create the days overdue formulas but to
track unpaid amounts from over many rows is causing me a headache. I
can also write a VBA program to “look-back” several rows to determine
which bill this partial payment should be applied to but that started
to get way too complex. There must be a simpler way to determine
aging on the current balance. Any help will be appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default AR Aging Report Design Issue

On Feb 4, 11:29*am, AutoMagic wrote:
I receive an AR report showing statements billed and payments made by
customers for the last 12 months. *It also shows the current balance.
I have been asked to create an aging report that determines if any of
the current balance is 30, 60 or 90 days overdue. *Statements and
Payments are on separate rows and can vary widely. *For example one
report I saw showed 5 months unpaid and when the customer finally did
pay they only part of one bill. *Accounting always pays the older bill
first. *I understand how to create the days overdue formulas but to
track unpaid amounts from over many rows is causing me a headache. *I
can also write a VBA program to “look-back” several rows to determine
which bill this partial payment should be applied to but that started
to get way too complex. *There must be a simpler way to determine
aging on the current balance. *Any help will be appreciated.


As an example the Aging Report should end up looking like this if 5
months of payemts are not paid. Then
only a $50 payment is made by client (assumes 30, 60, 90 days pass Due
Date):

Trans Due Invoice Paymt
Client Date Date Amount Recvd Balance Overdue 30 60 90
-----------.-----------------.----------------.---------------.----------------.---------------.---------------.---------------.---------------.------------
Client 1 1/1/08 1/31/08 $100.00 $0.00 $100.00 $0.00 $0.00 $0.00 $0.00
Client 1 2/1/08 3/2/08 $100.00 $0.00 $200.00 $100.00 $0.00 $0.00 $0.00
Client 1 3/1/08 3/31/08 $100.00 $0.00 $300.00 $200.00 $100.00 $0.00
$0.00
Client 1 4/1/08 5/1/08 $100.00 $0.00 $400.00 $300.00 $100.00 $100.00
$0.00
Client 1 5/1/08 5/31/08 $100.00 $0.00 $500.00 $300.00 $100.00 $100.00
$100.00
Client 1 5/1/08 $0.00 $50.00 $450.00 $250.00 $100.00 $100.00 $50.00

I'm having trouble determining what formula or VBA code is needed to
do this automatically.
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default AR Aging Report Design Issue

On Feb 4, 12:38*pm, AutoMagic wrote:
On Feb 4, wrote:

I receive an AR report showing statements billed and payments made by
customers for the last 12 months. *It also shows the current balance.
I have been asked to create an aging report that determines if any of
the current balance is 30, 60 or 90 days overdue. *Statements and
Payments are on separate rows and can vary widely. *For example one
report I saw showed 5 months unpaid and when the customer finally did
pay they only part of one bill. *Accounting always pays the older bill
first. *I understand how to create the days overdue formulas but to
track unpaid amounts from over many rows is causing me a headache. *I
can also write a VBA program to “look-back” several rows to determine
which bill this partial payment should be applied to but that started
to get way too complex. *There must be a simpler way to determine
aging on the current balance. *Any help will be appreciated.


As an example the Aging Report should end up looking like this if 5
months of payemts are not paid. *Then
only a $50 payment is made by client (assumes 30, 60, 90 days pass Due
Date):

* * * * Trans * Due * * Invoice Paymt
Client *Date * *Date * *Amount *Recvd * Balance Overdue 30 60 90
-----------.-----------------.----------------.---------------.------------*----.---------------.---------------.---------------.---------------.------*------
Client 1 * * * *1/1/08 *1/31/08 $100.00 $0.00 * $100.00 $0.00 * $0.00 * $0.00 * $0.00
Client 1 * * * *2/1/08 *3/2/08 *$100.00 $0.00 * $200.00 $100.00 $0.00 * $0.00 * $0.00
Client 1 * * * *3/1/08 *3/31/08 $100.00 $0.00 * $300.00 $200.00 $100.00 $0.00
$0.00
Client 1 * * * *4/1/08 *5/1/08 *$100.00 $0.00 * $400.00 $300.00 $100.00 $100.00
$0.00
Client 1 * * * *5/1/08 *5/31/08 $100.00 $0.00 * $500.00 $300.00 $100.00 $100.00
$100.00
Client 1 * * * *5/1/08 * * * * *$0.00 * $50.00 *$450.00 $250.00 $100.00 $100.00 $50.00

I'm having trouble determining what formula or VBA code is needed to
do this automatically.


Ballpark Calculations for 30, 60 90 Days Overdue. Assumes monthly
invoices with 30 days to pay bill.

Total Overdue = Current Balance - (Average Invoice X 2)

Buckets (Overdue categories affected - 30, 60, 90) = Total Overdue /
Average Invoice

If Buckets < 1 then
30 = Total Overdue

If Buckets 1 and < 2 then
30 = Average Invoice
60 = Total Overdue - Average Invoice

If Buckets 2 then
30 = Average Invoice
60 = Average Invoice
90 = Total Overdue - (Average Invoice X 2)

Total Buckets should always equal Total Overdue.
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 Report Abdul Shakeel Excel Discussion (Misc queries) 1 March 12th 08 01:25 PM
accounts payable aging report John Grinder Excel Worksheet Functions 4 December 11th 07 06:51 AM
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 04:14 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"