EDIT: I would say this has been implemented.
I am also trying to do something similar. I am able to get part of the way using an arcade expression as the field... In my case I am trying to combine some values based on null or not null. You can check if your field is null and concatenate some string to make a new value. The problem I have is that I am not allowed to add new values to the list... Add new values gives me "Requested operation could not be completed" There are possible values that are not currently in the feature class but will some day be there. I need to add my own classes to the symbol set from the options.
if ($feature.DATAHOST == null)
return concatenate( Text($feature.NBANDS), " none")
else
return concatenate( Text($feature.NBANDS), " host")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.