I have a label expression where I want to not display any building numbers greater than 1000. We went from 10.0 to 10.3. The script worked in 10.0 but not 10.3.
Function FindLabel ( [buildingNumber] )
if ( [buildingNumber] < 1000) then
FindLabel = [buildingNumber]
end if
End Function
Thanks for any help
Mike