I have a list with days that I want to round to specific weekdays depending on the input day.
So let's say this is the list:
I want to round the days to Monday/Wednesday/Friday.
If the date is Tuesday it should round to Wednesday and if the date is Thursday it should round to Friday!
I can do this:
=WORKDAY(A1-1;1)
Which takes a day from the current workday and ads another. Problem is that I would like to round it to a specific day.
Any thoughts?