4 weeks ago
Hello all,
I would like to get the cycle time between two events in Process Intelligence. I think I can do this by putting in two filters on CT widget.
This ensures that both the events are present in the filtered cases and only those two events are present in those case.
Is there a more efficient way of doing this ?
In Celonis, we just have to select 2 events in a single filter and it works.
Hi Kunal,
Thanks for your question. Sam here from the #SIGNAL Engine team in Process Intelligence.
To calculate the cycle time between two events, I would propose the following query:
AVG (
(SELECT LAST (END_TIME) FILTER (WHERE "event_name" = 'B')) - (SELECT FIRST (END_TIME) FILTER (where "Event_name" = 'A')
) AS "Cycle time between event A and event B"
Some notes to the query:
Please let me know if this solves your problem or not. I have also flagged this as a good candidate to include in our SIGNAL Cookbook, extending on from the Average Cycle Time calculation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
66 | |
11 | |
10 | |
10 | |
9 | |
7 | |
7 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.