Can I use arcade to symbolize one feature based on another?

506
1
04-29-2019 12:28 PM
by Anonymous User
Not applicable

I have a point feature class which is the centroid of a polygon with an attribute for status. I would like to be able to symbolize the polygon based on the attributes of the point. The two do share a common GUID and there is only one point in each polygon. 

I can do it in the attribute table using this:

var GUID = $feature.GUID 
var Lot =Filter(FeatureSetByName($map,"Points"), "GUID = @GUID ")
return first(Lot)["Status"]

These functions aren't available to in symbolization. 

Any help?

0 Kudos
1 Reply
XanderBakker
Esri Esteemed Contributor

That is correct, the FeatureSetBy* are not available in the symbolization profile. If the data is static, you can calculate a new field with the expression and symbolize on that new field.