Hi All,
I am trying to create an arcade expression that allows me to auto-populate a Full Adress field using attribute rules in ArcGIS Pro. I have created an arcade expression for an address with a street number, street, and street type, which is shown below.
var streetnumber = $feature.STREET_NUMBER
var street = $feature.STREET_NAME
var type =$feature.STREET_TYPE
return Concatenate([streetnumber, street, type],' ')
But I need an expression that allows for me to have prefixes and suffixes that are only in SOME addresses. Below is what I need the addresses with a prefix or suffix to look like.
Prefix: 101-5888 ABC Avenue
Suffix: 5889C ABC Avenue
I am still learning arcade and your input is greatly appreciated!!
Thank You:)