Slice with row condition based in enum list

I am trying to create a slice and the row condion is rows that have a certain value in a field defined as enum list. I am getting the error that the expression cannot compare with a list value in a field. Is there a way to do it? Example. In the table there is an enum list field containg values: Jerez, Benalmadena and Marbella. I want to create a slice with only records contaning Jerez in that field. Which is the correct sintax of the row condition expression to do this?

0 1 45
1 REPLY 1

Hi,  assuming the EnumList-typed field/column is named "EnumListFieldName", the row filter condition for the slice you're creating should be: IN("Jerez", [EnumListFieldName])

Top Labels in this Space