Hello All,
I am using a workflow where i need to find out the time taken to complete a specific task,
so i have used 2 variables of Data type : Datetime (“startTime” and “endTime”) and 1 Variable of Data Type : TimeSpan (“executionTime”)
So before the start of task i have assign value of startTime = DateTime.Now and at the end of task value of endTime = DateTime.Now
Now in order to get execution time i have assigned executionTime = endTime - startTime.
The output of time span variable is in format D.HH:MM:SS (Days.hours:Minutes:Seconds)
but i want the output in HH:MM:SS only.
Also the Task may take 1 or 2 days to complete .
Please let me know any solution for above query.