I am trying to create a sheet to track hours by week. I need a formula to calculate the first day of the week and the first day of the month if the first day of the month occurs between Mon-Fri. In Excel I'm able to accomplish this with:
=IF(WEEKDAY(B2) <> 2, A2+ 7,
IF(OR=MONTH(B2+7) > MONTH(B2), YEAR(B2+7) > YEAR(B2)),
IF(OR(WEEKDAY(EOMONTH(B2, 0) + 1) = 1,
WEEKDAY(EOMONTH(B2, 0) + 1) = 7), B2+1, EOMONTH(B2, 0) + 1), B2+7))
but without EOMONTH in smartsheet I'm lost.
Appreciate any guidance you might have -
Christine