Here I have a question about the Label Expression I am working on.
I want to replace two CO- and E- with "" , but not sure HOW do I do for this method in the label expression.
The field name I have is an Alias which is all the route names and when I look at the attributes table and found two that I wanted to replace with .
The first one I use the replace with worked but not sure for the second one..
Replace([ALIAS],"CO-","")
How do I add one more for the "E-" and replace with "" ?
Solved! Go to Solution.
You can use the results of the first Replace in a second Replace
Replace(Replace([ALIAS],"CO-",""),"E-","")
You can use the results of the first Replace in a second Replace
Replace(Replace([ALIAS],"CO-",""),"E-","")
Thank you ! That worked !