Calculating case throughput time until first occurence of either one of two activities Hello everyone!I have the code below:AVG( CALC_THROUGHPUT( ALL_OCCURRENCE['Process Start'] TO FIRST_OCCURRENCE['Incident assigned to a new operator'], REMAP_TIMESTAMPS("activity"."SYS_CREATED_ON", SECONDS) ) / 60 /60 )which calculates averate throughput time until activity "Incident assigned to a new operator" occurs. I have however changed the data transformation script, so that this activity can now either be "Incident assigned to an operator by service desk" OR "Incident claimed by operator from incident pool"Obviously this change broke my KPI, as what used to be one activity can now be either one of the two. I was hoping it would be possible to pass two strings to FIRST_OCCURRENCE[] (such as FIRST_OCCURRENCE['Activity A','Activity B']), indicating I want to measure time until occurence of either "activity A" or "activity B", similarly to NODE_ALL[] vs NODE[], but unf