Kay has attended:
Excel Advanced course
Excel Advanced - Formulas & Functions course
Calculating due dates in Excel
Hi,
I would like to set up excel formula to flag up due dates that are due in the next 3 months - How can this be done?
for example: Due date is 07 Apr 2018 - require built in formula to return "coming due"
thanks
RE: Calculating due dates in Excel
Hi Kay,
Thank you for the forum question.
If your date you want to test is in A1 the functions below will do the job.
May I suggest that instead of using two Today functions as below, you should have the Today function in a cell and then reference the cell. This will make your workbook working faster.
=IF(AND(A1>=TODAY(),A1<=EDATE(TODAY(),3)),"Coming Due","")
Kind regards
Jens Bonde
Microsoft Office Specialist Trainer
Tel: 0207 987 3777
Best STL - https://www.stl-training.co.uk
98%+ recommend us
London's leader with UK wide delivery in Microsoft Office training and management training to global brands, FTSE 100, SME's and the public sector
RE: Calculating due dates in Excel
Thank Jen - is it also possible to add another part to this equation to flag up anything as "Overdue" that has exceeded the due date that is in cell A1?
Thanks
RE: Calculating due dates in Excel
Hi Kay,
The formula below should do the job.
=IF(AND(A1>=TODAY(),A1<=EDATE(TODAY(),3)),"Coming Due",if(a1<today(),"Overdue",""))
Kind regards
Jens Bonde
Microsoft Office Specialist Trainer
Tel: 0207 987 3777
Best STL - https://www.stl-training.co.uk
98%+ recommend us
London's leader with UK wide delivery in Microsoft Office training and management training to global brands, FTSE 100, SME's and the public sector