I have a spreadsheet that calculates the future due date of projects. The project is due on the 10th of each month but has to account for weekends and holidays. If a holiday (handled by the vlookup) or weekend is present is shows the previous workday.
The below formula works well, however, it only shows the due date in the current month. For example, if today is 09/11 it will say it is due 09/10 until October. I need it to say 10/10 as soon as 09/10 passes. Any ideas? Thanks!
=IFERROR(VLOOKUP(WORKDAY(EOMONTH($G$5,-1)+10+1,-1),Holidays!C:D,2,FALSE),WORKDAY(EOMONTH($G$5,-1)+10+1,-1))
The below formula works well, however, it only shows the due date in the current month. For example, if today is 09/11 it will say it is due 09/10 until October. I need it to say 10/10 as soon as 09/10 passes. Any ideas? Thanks!
=IFERROR(VLOOKUP(WORKDAY(EOMONTH($G$5,-1)+10+1,-1),Holidays!C:D,2,FALSE),WORKDAY(EOMONTH($G$5,-1)+10+1,-1))