4
I am not able to convert a text value of 5 205
with a middle blank space into 5205
in Excel. If I leave the value like this, my report chart with sum displays 0.
If I try to convert the text using the following formula:
VALUE(TRIM(B297))
it returns an error.
Even if I convert the cell to a number, it leaves the value as it is. My sum still returns 0.
=VALUE(SUBSTITUTE(B297," ",""))
isn't working either.
2If the document the number is coming from is correctly typeset, it would most likely be a
U+202F narrow no-break space
, or possibly aU+2009 thin space
orU+00A0 no-break space
. Somewhat less likely, it may also be aU+2007 figure space
. – Jörg W Mittag – 2016-05-10T08:45:29.420