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!
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.