Good morning,
Is there a way to add in a web map a filter to a layer that has a condition with AND and OR
For example ProjectStatus = Active and (ProjectLocation = "Park" or "Residential" or "Commercial")
Thanks
Solved! Go to Solution.
You can create a condition group by clicking on the three dots and select add condition.
From there you can select if any are true (or) or if all are true (and) for that specific group.
Hi @SanchezNuñez,
You cannot include a grouping of clauses in a map filter. However, you can set it up so that it looks like the example below.
ProjectStatus = Active
AND
ProjectLocation
Includes( *Selected Values)
You can create a condition group by clicking on the three dots and select add condition.
From there you can select if any are true (or) or if all are true (and) for that specific group.
Thank you @JenniferAcunto
This is what I did and it worked.