Forum Discussion
Ifono78bezeqint
Jun 17, 2021Copper Contributor
Text to Number conversion
Recently I exported my bank statement to an Excel spreadsheet. The export worked fine except that negative values were exported as text not as numbers (bad practice by the bank programmers…). Tried t...
- Jun 19, 2021
Perhaps you copy/pasted your numbers from web or like. Before each "minus" there is non-printable character (unicode 8206).
As variant conversion could be as
=IF(UNICODE(LEFT(B2))=8206,RIGHT(B2,LEN(B2)-1),B2)*1
HansVogelaar
Jun 17, 2021MVP
Could you copy a few of the problem values into an empty new workbook and attach that to a reply?
- Ifono78bezeqintJun 19, 2021Copper Contributor
Attached is a sample workbook with a couple of problem values.