formula If within 3mo x if older than today Y else don't care

rjwebgraphix

Well-known Member
Joined
May 25, 2010
Messages
590
It's been a while since I've EXCELled at anything, and just trying to do something which should be simple, but it's like rewinding my brain a decade trying to figure this out.

I have a simple formula that will tell me if a date is within 3 months or not.

=IF(AND(E3>=TODAY(),E3<=EDATE(TODAY(),3)),"DUE","not due or PAST DUE")

This works for that purpose, but I need another condition added to it. If within 3 months of today including today it's Due, If it's older than today's date It's Past due, otherwise, don't care about it.

Could someone help me in adding the past due and don't care conditions. Don't care can be "".

Thanks.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
How about
Excel Formula:
=IF(E3<TODAY(),"past due",IF(E3<=EDATE(TODAY(),3),"DUE",""))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,492
Members
448,967
Latest member
visheshkotha

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