We are working to visualize datasets for a Dashboard using a complex Arcade expression. However, we are stuck on the first Filter function of a featureSet. Can anyone offer suggestions??????
Solved! Go to Solution.
You can have multiple LIKES, but you have to use "OR" not "||"
FaunaPResent_MarshQuad LIKE '%1%' OR FaunaPresent_MarshQuad LIKE '%2%'
Assuming you only have single-digit numbers, I think this would work:
FaunaPresent_MarshQuad LIKE '%1%'
If you have two-digit values it's going to be trickier.
Ooh that does work. Is there a way to select multiple values in that statement? I.e., if we want all records with a "1" or a "2" in them?
Something like
FaunaPResent_MarshQuad LIKE '%1%' || FaunaPresent_MarshQuad LIKE '%2%'
Thanks so much!
You can have multiple LIKES, but you have to use "OR" not "||"
FaunaPResent_MarshQuad LIKE '%1%' OR FaunaPresent_MarshQuad LIKE '%2%'
Thank you both so much!!