Hello,
I wanted to check if it’s possible to include the flow’s execution time as a variable in the output.
Thank you.
@BautistaC888 It is possible:
Add a formula tool at the very beginning of the workflow and set a time stamp, DateTimeStart() or DateTimeNow().
Then at the very end of the workflow add another formula tool and then add another time stamp DateTimeNow(). Then DateTimeDiff(DateTimeNow(), DateTimeStart(), "*time units"). *time units can be minutes, seconds etc.
This will calculate the requested time
slight difference this can all be done in one formaula tool at the end with datetimestart and datetimenow
@BautistaC888 any luck?