Hello,
My goal is to create a filter which, after clicking, will only show cases which contain specific activity in them. In my case I want to include all cases which do contain activity with string ‘reject’ in the name of activity.
I’m trying to create a filter with this expression:
FILTER MATCH_PROCESS_REGEX ( "_CEL_MERGED_ACTIVITIES"."ACTIVITY", 'X' >> LIKE '%reject%' ) = 1;
Although it does not seem to be working.
How can I create and apply a filter to show only all cases which do have such activity?
