ChatterBank0 min ago
EDATE in Excel - Formula challenge!
6 Answers
I have a date when a project has to submit a final report by, which is trigegred byt he project end date plus one month (using EDATE).
Anyone know a formula that can tell me, when I open the spreadsheet, if the report is overdue?
All I need it to recognise is the date today (each day, i.e. EDATE NOW) and if it is after the date the report is due, resulting in a big red 'OVERDUE' text entry in the cell?
Anyone know a formula that can tell me, when I open the spreadsheet, if the report is overdue?
All I need it to recognise is the date today (each day, i.e. EDATE NOW) and if it is after the date the report is due, resulting in a big red 'OVERDUE' text entry in the cell?
Answers
Best Answer
No best answer has yet been selected by funkylad20. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.Say your project end date+1 month is in the cell E1. In another cell where you want the Overdue indicator to be displayed, set the formual to:-
=IF(TODAY()>E1,"OVERDUE"," ")
If you want to make the OVERDUE text show as red, click in the cell, and select the Format menu and then Conditional Formatting.
In the 3 boxes, set the selections to 'Cell Value Is', 'Equal To' and in the final box ="OVERDUE".
Then select the font or cell colour by clicking the Format... button.
=IF(TODAY()>E1,"OVERDUE"," ")
If you want to make the OVERDUE text show as red, click in the cell, and select the Format menu and then Conditional Formatting.
In the 3 boxes, set the selections to 'Cell Value Is', 'Equal To' and in the final box ="OVERDUE".
Then select the font or cell colour by clicking the Format... button.
using same example as TTG it would be:-
=IF(TODAY()>E1,"OVERDUE","NOT DUE ")
you can then also use conditional formatting to change the cell colour depending on if it says overdue or not due in it (look on the formatting menu)
and yes, today will always the the current day, if you looked at it in 3 months it would still use the correct date.
=IF(TODAY()>E1,"OVERDUE","NOT DUE ")
you can then also use conditional formatting to change the cell colour depending on if it says overdue or not due in it (look on the formatting menu)
and yes, today will always the the current day, if you looked at it in 3 months it would still use the correct date.
Related Questions
Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.