I have a list of assignments in excel 2010. Each has a due date. The assignment must be submitted for external processing 3 working days before the due date. Before the assignment can be sent to external processing, it must be reviewed. Submissions for review are on Mondays and Wednesday.
I want a function that looks at the date in the due date cell and returns the date of the Monday or Wednesday (which ever is closer) before the date 3 workdays before that date;
X = (3 workdays before the due date)
submit date = (Monday or Wednesday before X)
I got X thus; =WORKDAY.INTL(<due date cell>,-3)
Now I just need the code to get to the submit date.