I am trying to build an expression that will show a RED X if the value is No and a GREEN check if yes...
I have done this before but cant remember....
HOW can I return a symbol instead of text as seen below.
function symbol(feature){
var display = When(feature == 1, 'Yes', feature == 0, 'No', 'n/a');
return display
}
symbol($feature.SOMEFIELD)