Accounts Receivable Aging in Excel

jeffdlinn

New Member
Joined
Nov 18, 2013
Messages
29
Office Version
  1. 365
Platform
  1. Windows
=IF(TODAY()-F2<=30,"0-30 days",IF(TODAY()-F2<=60,"31-60 days",IF(TODAY()-F2<=90,"61-90 days","over 90 days")))

The formula above works great for aging a report I have based on today's date of 7/9/2014. However the report was prepared on 7/1/2014, so I need to age based on 7/1/2014. How can I modify this formula to age based on the date of 7/1/2014.

Thanks
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Your formula can also be smaller version like

=LOOKUP(TODAY()-F2,{0,31,61,91},{"0-30 Days","31-60 Days","61-90 Days","Over 90 Days"})


If you want 7/1/2014 instead of today then

=LOOKUP(
DATE(2014,7,1)-F2,{0,31,61,91},{"0-30 Days","31-60 Days","61-90 Days","Over 90 Days"})


Your formula would be like for 7/1/2014

=IF(DATE(2014,7,1)-F2<=30,"0-30 days",IF(DATE(2014,7,1)-F2<=60,"31-60 days",IF(DATE(2014,7,1)-F2<=90,"61-90 days","over 90 days")))
 
Upvote 0
I was close, I formatted my date incorrectly.

Your formula worked beautifully. Thanks!
 
Upvote 0
my company is a trading co and buys products from different companies... which formula I should be using to making aging report under their name and within days (i.e 1-30,31-60 and soo on)..plz do reply...thx
 
Upvote 0

Forum statistics

Threads
1,215,868
Messages
6,127,408
Members
449,382
Latest member
DonnaRisso

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top