Hi,
I found the formula that, starting from a whatever user’s session date&time, when he/she choose “day after tomorrow at 3:30 pm” returns exactly the day after tomorrow at 3:30 pm.
Following is the formula:
date&time +48h + date&time + 24h-date&time-24h- 15h -30m
I tested it in an excel sheet and it works.
I tried to implement in the flow (add event in google calendar) but it return the following error message:
“‘Start Date/Time’ isn’t in a recognised format (‘Sat Mar 31 2018 08:48:26 GMT+0000 (UTC) +48h +Sat Mar 31 2018 08:48:26 GMT+0000 (UTC) +24h -Sat Mar 31 2018 08:48:26 GMT+0000 (UTC) -24h -15h -30m’).”
As I know it is possible to calculate date/time field in google calendar by writing
“{{myflow.datetime}} +48h”, I desume that is possible writing the following formula
{{myflow.datetime}} +48h +{{myflow.datetime}} +24h -{{myflow.datetime}} -24h -15h -30m
Am I wrong?