Hi All,
I've a field ${Field1} containing a comma-separated list of values.
I'm trying to figure out how to add a filter where I can check if a specified field's value ${Field2} exists in ${Field1} list. So I added a filter in my model like this :
Field1 IN ${Field2}
Field2 contains for example the value : a, b, c. and Field1 contains the value : b
Unfortunately it seems not working.
Question : Am I doing the right thing? How to do my test above in GeoEvent?
Thanks for your help.
Zakaria
Hey @Anonymous User
The IN operator is working for me given your provided sample. In your screenshot you are showing the = (equals) operator instead of the IN operator. If you set this up to use the following, it should work.
Hiver_deneigement_zone IN ${Zones}