I'm working on arcade label expression to show suite numbers vs the civic number if its a condo complex.
I could not figure out what's wrong with my expression, but the same logic expression works in arc map.
any insight will be appreciated.
The expression is :
IIf(IsEmpty($feature.UNIT_NUM), $feature.CIVIC_NUM, $feature.UNIT_NUM)
VB Label expression in arcmap is :
Function FindLabel ( [CIVIC_NUM], [UNIT_NUM] )
if ( [UNIT_NUM] <> "<Null>" ) then
FindLabel = [UNIT_NUM]
else
FindLabel = [CIVIC_NUM]
end if
End Function
Would any be able to shed some light on how to achieve this.
Thanks in advance