Hi, All I need to create a Saved search where HNTB...
# general
g
Hi, All I need to create a Saved search where HNTB# is included in any element of the array How to achieve this, My Array [22033,22034,22035,22036]
m
Use formula text CASE WHEN {hntbFieldId} IN ('22033', '22034', '22035', '22036') THEN 'T' ELSE 'F' END
1
g
Thanks @Marc