Hi there,
I want to filter a comma-separated text dynamically with the values I enter in a ENUMLIST type column. I write this expression but I get NO or FALSE to all even though I’m sure that the value/values I put in ENUMLIST type column are present in the comma-separated text.
IN(
ANY(
SELECT(
filter[1_criteria],
TRUE
)
),
SPLIT([concatenatedLabels], ", ")
)
with this expression, I get all FALSE. Can you help me please?