HOW TO
In some instances, unique values from multiple attribute fields are customized to form groups that display only certain attributes on the map.
In the image below, the locations of various orchids are symbolized by species, and by whether they are common or threatened. If the dataset is not customized, all the attributes are scattered and symbolized individually on the map.
In this example, the locations of Butterfly orchids where it is common and threatened are emphasized. To do this, the selected attributes are grouped and symbolized using the Arcade expression.
Below are the steps to use Arcade to group unique values from multiple attribute fields in ArcGIS Pro.
var name = $feature.Name var status = $feature.Status if (name == "Butterfly") { if (Status == "Common") { return "Group 1" } } if (name == "Butterfly") { if (Status == "Threatened") { return "Group 2"} } else { return "Group 3" }
Note: Repeat the 'if' or 'else if' statement in the expression if it is necessary to configure more fields for the unique values.
The image below shows the groups of unique values customized according to the steps above. Now, the location of Butterfly orchids where it is common and threatened are emphasized.
Get help from ArcGIS experts
Download the Esri Support App