I am trying to create a filter that meets following criteria. How do I do it?
Filter for Field_ID value starting with 2xxxxx or 928200 or 128100. Thanks
Solved! Go to Solution.
Hi @anamik72 , you could setup your formula to be something like:
StartsWith([Field1], '128100')
OR
StartsWith([Field1], '2xxxxx')
OR
StartsWith([Field1], '928200')
It worked. Thank you. I just wrote "2" instead of "2xxxxx".