jchewsmith
Technical User
If DayOfWeek({SSRpt_ShippingOnTime.Order Created}) = 7
Then DateTime(DateSerial(Year({Order Created}),Month({Order Created}),Day({Order Created})+2),(Time(8,0,0),100))
Else
If DayOfWeek({Order Created}) = 1
Then DateTime(DateSerial(Year({Order Created}),Month({Order Created}),Day({Order Created})+1),Time(8,0,0))
Else {Order Created}
I have this formula to change the start date to Monday at 8:00 am if the order is placed Saturday or Sunday. This displays as 1/1/2016 1:00:00 PM.
First I want this to display as 1/1/2016 13:00:00?
Second I want to add if after 5:00 PM on Friday also change to Monday at 8:00 am.
Then DateTime(DateSerial(Year({Order Created}),Month({Order Created}),Day({Order Created})+2),(Time(8,0,0),100))
Else
If DayOfWeek({Order Created}) = 1
Then DateTime(DateSerial(Year({Order Created}),Month({Order Created}),Day({Order Created})+1),Time(8,0,0))
Else {Order Created}
I have this formula to change the start date to Monday at 8:00 am if the order is placed Saturday or Sunday. This displays as 1/1/2016 1:00:00 PM.
First I want this to display as 1/1/2016 13:00:00?
Second I want to add if after 5:00 PM on Friday also change to Monday at 8:00 am.