From the previous thread, the OP tried approaches that should have worked
unless there are CHAR(160) characters, in which case neither TRIM nor
multiplication will work.
For a helper column approach,
=VALUE(SUBSTITUTE(SUBSTITUTE(A1,CHAR(160),""),"$",""))
would deal with both the CHAR(160) and the original question of the text
"$" characters.
To do it in place, use Data|Text to Columns, check the Delimited, check
the Other checkbox under and in the entry box to the right of it enter
Alt-0160 (hold down an [Alt] key while pressing 0160 in sequence on the
numeric keypad, not the numbers across the top of the keyboard). This
approach can change the "$" to part of the numeric format if it has not
already been removed.
Jerry
Gary''s Student said:
If A1 has leading or trailing blanks then use:
=TRIM(A1)*1
If you have a column of these things then copy the formula down the
column.