Hi!
Does anyone know if there is a function in ArcgGIS Pro for displaying the Domain Description instead of the Code? The pic below shows three different use of a building and Id love to read the description "Military, Exhibition and Museum" over the codes "0,8,4".
Solved! Go to Solution.
Hi!
Found a way to solve this using the function Arcade:
// returns a meaniningful value when a field contains coded valuesvar code = $feature.codedValue;var decodedValue = Decode(code, 1, 'Residential', 2, 'Commercial', 3, 'Mixed', 'Other');
Hi!
Found a way to solve this using the function Arcade:
// returns a meaniningful value when a field contains coded valuesvar code = $feature.codedValue;var decodedValue = Decode(code, 1, 'Residential', 2, 'Commercial', 3, 'Mixed', 'Other');