this will put the date to a monday
=IF(WEEKDAY(B1+75,2)=7,B1+76,IF(WEEKDAY(B1+75,2)=6,B1+77,B1+75))
and count 75 days , and monday if a Sat or Sun
is that what you wanted ?
I'm looking at the 75 workdays version
as i posted the last sentence
try
=WORKDAY(B1,75)
you can add holidays into the workday() function
but would need a lookup for the first function offered for 75 days
need to look at a betterway to do that
=IF(WEEKDAY(B1+75,2)=7,B1+76,IF(WEEKDAY(B1+75,2)=6,B1+77,B1+75))
and count 75 days , and monday if a Sat or Sun
is that what you wanted ?
I'm looking at the 75 workdays version
as i posted the last sentence
try
=WORKDAY(B1,75)
you can add holidays into the workday() function
but would need a lookup for the first function offered for 75 days
need to look at a betterway to do that