Forum Discussion
Mgayer
Mar 28, 2019Copper Contributor
Excel Formula
I am trying to create a formula that not only adds 15 days to a particular date but if said date lands on a Saturday then it rolls back to Friday and if it lands on a Sunday then it rolls forward to M...
Twifoo
Mar 28, 2019Silver Contributor
Use this formula:
=A1+15-(WEEKDAY(A1+15)=7)+(WEEKDAY(A1+15)=1)
=A1+15-(WEEKDAY(A1+15)=7)+(WEEKDAY(A1+15)=1)