I am attempting to setup a screen flow to run as a cadence Step. I want to give the user a few options for Next steps and one of those steps is to pause the cadence until a specified time. I gave them a screen flow with a date & Time Module and when adding that value to "Scheduled Resume Time" I get this error, You’ve received this email because an error occurred while your "Collections Cadence Step Flow" flow was running.
Error element Schedule_Cadence_Restart_Time (FlowActionCall).
Specify a resume time value at least 1 hour in the future in the ISO 8601 format [2021-06-25T05:38:15.521917Z].
I have tried a few formulas to reformat but having no luck. this is my most recent.
TEXT({!Your_DateTime_Field} - 5/24) & '.' & RIGHT('00' & TEXT(MILLISECOND({!Your_DateTime_Field})), 3) & 'Z'
Any Guidance Is appreciated!!
#Formulas #[Flo
it should be as simple as if you are looking to add 1 hour time.
Please mark as best answer if it helps :)
TEXT({!Your_DateTime_Field} + 1/24) & 'Z'