Hi everyone,
I'm trying to make an indicator dashboard to display a simple statistic about some data but I'm a bit baffled by the apparent lack of brackets when combining AND/OR filter conditions. This help page...
https://doc.arcgis.com/en/dashboards/latest/get-started/filter-data.htm
...gives the example expression = condition1 AND condition2 OR condition3, which I think is treated as expression = (condition1 AND condition2) OR condition3 but there doesn't seem to be any way to construct expression = condition1 AND (condition2 OR condition3)
I need to be able to use brackets to set some complex logic but this doesn't seem to be an option - am I missing something really obvious here or am I stuck?
Thanks a lot!
Solved! Go to Solution.
Have you tried (condition1 AND condition2) OR (condition1 AND condition3)?
Have you tried (condition1 AND condition2) OR (condition1 AND condition3)?
That works, thank you so much!