I am trying to add a calculated field that removes dashes from another field value, I was thinking it would be just as straightforward as:
REPLACE(FIELD,"-","")
But doesn't seam to work. It does replace the dashes with a letter or a space when the same is added as the third string:
REPLACE(FIELD,"-","a")
REPLACE(FIELD,"-"," ")
I feel like I am missing something really simple here, any suggestions?