Hello everyone,
I want to calculate the average delivery time and I chose to do this by calculating the throughput time between activity A and activity B in Studio with this formula:
AVG (
CALC_THROUGHPUT (
FIRST_OCCURRENCE [ 'A' ]
TO
LAST_OCCURRENCE [ 'B ] ,
REMAP_TIMESTAMPS ( "ACTIVITIES"."EVENTTIME" , DAYS )
)
)
However, Celonis warns me that >> The aggregation function AVG is applied on a column from table "_ACTIVITIES_CASES" which has a 1:N relationship to the common table "ACTIVITIES". << Could anyone tell me what causes this and how I can make sure that there are not multiple entries sabotaging the average?
Thank you very much in advance!