How to print the total time the workflow taken

Hi team,

How can i print the total execution time of my process?
image

Regards,
Sriram

1 Like

Use assign to get the start time
starttime= Datetime.now.tostring
And then at end of workflow
keep endtime = datetime.now.tostring
then substract both to get the total time taken
Like
Total time taken= endtime - startTime
you will get total time taken

2 Likes

Thanks @Shanmukh08.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.