I have a formatting format configured to convert currency strings to decimal values. The problem is that if there is no dollar sign ("$") in the text string, it will be converted to 0, and not to a valid corresponding number. So:
"$3.50" converts to 3.50 "3.50" converts to 0
Here is the code for the converter:
Did I miss something?
source share