Hi all, I have a workflow that has a [Stage] column, I have a bot to capture each stage change and record this in another table, this table has the name of the stage and DateTime it was changed, I want to find a way to calculate how long the task was in a particular stage,
Eg:
row 1- [Stage] = “In Dev” , [Timestamp] = “12/21/2021 3:21:02”
row 2- [Stage] = “In QA” , [Timestamp] = “12/21/2021 5:21:02”
row 3- [Stage] = “Completed” , [Timestamp] = “12/21/2021 6:21:02”
So duration in Dev Stage would be 2 hours, in QA stage it would be 1 hour
is there a way to accomplish this,
Any help would be greatly appreciated, Thanks in advance