Hello everyone,
I have a string below pulling from a csv file.
str = '1,568,582.27'
Is there a simple function that I can use to remove all commas in it so it becomes
str = '1568582.27'
Thank you,
kle2
Found a this function works great: StrReplace(str, ",", "")
The best questions are the self-answered ones.
The StrClean function will work for that as well, and other characters at the same time.