I have a field that sometimes has multiple blanks in the data. for example "myfirst mylast" and it needs to be "myfirst mylast". i am using this command but i do not know how to look for more than one character at a time. is this even possible?
REPLACE ALL cField WITH CHRTRAN(cField,CHR(32),'')
Thanks you for any answers.
REPLACE ALL cField WITH CHRTRAN(cField,CHR(32),'')
Thanks you for any answers.