I do not know much Arcade. I am trying to create a custom Arcade expression. It is rather simple, but Portal and Pro ignore the first condition. It does not like the two-part argument. The symbology style page only shows Yes and No. It does not show Edited.
when(
$feature.edited == "Y" && $feature.withinplot == "Y", "Edited",
$feature.withinplot == "Y", "Yes",
$feature.withinplot == "N", "No",
"N/A"
)
I tried using an IF statement. I can get it to validate, but it still does not like the two-part argument.
Any help is appreciated.