Good morning Community,
I have been working with ArcGIS for a number of year but have only just started to venture into creating my own more complicated content. Specifically survey forms and asset inspection reports.
I am using Field Maps to create a asset inspection reporting system. My result is to change the symbology based on if the asset has been inspected. I have already defined a symbology that needs to be viewed by the field workers.
The solution to this is to create a new field with a concatenated input and define the symbology based on this. I have the following fields;
Solved! Go to Solution.
Hector,
This may be what you are looking for then.
if(IsEmpty($feature.Status)){
return $feature.SCC_ID
}
return $feature.SCC_ID + '-' + $feature.Status
Hi Jake,
Thanks very much for your help.
This expression worked for my need. appreciate the help.
kind regards,
Hector