calculating due dates excel

Forum home » Delegate support and help forum » Microsoft Excel Training and help » Calculating due dates in Excel

Calculating due dates in Excel

resolvedResolved · Medium Priority · Version 2016

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


 

Excel tip:

Brighten up your Excel 2010 Spreadsheet by changing the colours of the gridlines

Excel 2010 allows you to change the colour of grid lines instead of keeping them in boring black.

Select the File tab on the Ribbon, click Options, click Advanced, scroll down to ''Display options for this worksheet.'' Next to ''Gridline colour,'' choose your favourite colour, then once you've done this, click OK. Easy!

View all Excel hints and tips


Server loaded in 0.09 secs.