jchewsmith
Technical User
How do you change a date/time that is a weekend day to Monday at 7:00 am
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If DayOfWeek({Table.Field}) = 7
Then DateTime(DateSerial(Year({Table.Field}),Month({Table.Field}),Day({Table.Field})+2),Time(7,0,0))
Else
If DayOfWeek({Table.Field}) = 1
Then DateTime(DateSerial(Year({Table.Field}),Month({Table.Field}),Day({Table.Field})+1),Time(7,0,0))
Else {Table.Field}