• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

WORKDAYS - Future date then moved forward to the next working days

Stephanie Rance

New Member
I am trying to create a formula that takes todays date, adds a specific term (in months) then if the date in the future is a weekend it then moves it forward to the next working day.
E.g. Today 13/02/2018 add 1 months is 13/04/2019 which is a Saturday so I would want the formula to then shift the date to 15/04/2019.

Any help is greatly appreciated!
 
That's two months ...

Neither 13/03 nor 13/04 is a Saturday this year!

One or two months? Take your pick:

=IF(WEEKDAY(EDATE(A1,1),2)=6,EDATE(A1,1)+2,IF(WEEKDAY(EDATE(A1,1),2)=7,EDATE(A1,1)+1,EDATE(A1,1)))

=IF(WEEKDAY(EDATE(A1,2),2)=6,EDATE(A1,2)+2,IF(WEEKDAY(EDATE(A1,2),2)=7,EDATE(A1,2)+1,EDATE(A1,2)))

If you want a year and two months, let us know - your request is contradictory!!!

For 14 months:

=IF(WEEKDAY(EDATE(A1,14),2)=6,EDATE(A1,14)+2,IF(WEEKDAY(EDATE(A1,14),2)=7,EDATE(A1,14)+1,EDATE(A1,14)))
 
Back
Top