I have a field which is of type option set. the options are: org,dept,team
I want to match any record where the acl has ANY of the above options.
Example using pseudo SQL:
WHERE acl is in [ org, dept, team ]
I have tried creating a custom state of the appropriate type and ticked “list”, and then set that during page load to all the items in the option set.
Then in “Do a Search for”:
acl is in page.acl
but I get no records returned.
I assume because its trying to find a record where acl is set to [ org, dept, team ], which it wont be, it will be ONE of those.
Any pointers?