Hi,
I would like to to apply this function to mesure the cycle time of Change Activities. The activities table looks like this:
- Case ID
- 2 columns "Change From" and "Change To" along with timestamp column
- Time starts counting for each case when Change To = A for the first time and ends when Change from = A for the last time.
The logic Im trying to work around is (just disregard the function syntax- Im just trying to explain the logic.
CALC_THROUGHPUT(
First_Occurance ('Change to' = 'A') to
Last_Occurance ('Change from' =' A '),
Remap_Timestamps("Table"."event time", days)
What is the right way to implement this logic?
Should I filter the table to be "Change to" = 'A' or "Change from" = A and then merge this two columns to form a single column to use calc_throughput? But then how to merge different columns in the same table?
Thank you for any suggestion!