Hello,
I am working to clean up an address list that currently looks like this
1234 ST
456 STREET
12 AVE
5555 AVENUE
I would like to get it in the format:
1234 STREET
456 STREET
12 AVENUE
5555 AVENUE
I tried using a formula like:
IF Contains(RIGHT([Building Address], 3), "AVE") THEN "AVENUE" but this does not replace the wording just create a new column that says AVENUE.
I tried to add replace to the above formula but get a parse error.
Any thoughts? THan