I am trying to group the below attributes where they are all under one attribute named (Cancelled) and change the symbology to black lines.
Is this something I have to do in ArcGIS Pro?
Hi @Anonymous User, you can do this with Arcade in ArcGIS Online. Choose to style the layer with a new expression, then enter something like the following:
if ($feature.STATUS == 'Canceled/Not Billable' || $feature.STATUS == 'Cancelled/Not Billable' || $feature.STATUS == 'ODN-On Hold' || $feature.STATUS == 'Core-On Hold') { return 'Canceled'; } else return $feature.STATUS;
Result:
Hope this helps,
-Peter
Thanks so much, this helped with multiple problems I was having!
Glad you got it working, happy to help!
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.