Luis
10/02/2023, 3:14 AMDavid B
10/02/2023, 3:25 AMcustbody_next_approver_roles.id is it a csv with no spaces?
If so, you can use something like:
','||{custbody_next_approver_roles.id}||',' LIKE '%,'||{USERROLE}||',%'David B
10/02/2023, 3:32 AMREGEXP_INSTR({custbody_next_approver_roles.id}, '\b'||{userrole}||'\b') > OLuis
10/02/2023, 3:33 AMDavid B
10/02/2023, 3:33 AM,3, in ,1035,1038, (and be false)
If role 3 was at the start/end of the multiselect csv list, it would match because you add the delimiter to the start/end of the multiselect csv. i.e.:
,1035,1038,3,michoel
10/02/2023, 3:34 AMLuis
10/02/2023, 3:46 AM