Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Wed, 15 Mar 2006 04:29:27 -0800, Claus Massmann
wrote: i have copied data from a website and would like to apply certain formulas to it, but the data has 2 blank spaces after the last digit and therefore formulas are not working. I've tried trim, clean and neither are working. Can anyone help? Thanks There is most likely a no-break space in the string (CHAR(160)). So try: =TRIM(SUBSTITUTE(A1,CHAR(160),"")) You may need to precede this with a double unary if this is numeric data, as the formula returns text. =--TRIM(SUBSTITUTE(A5,CHAR(160),"")) --ron |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
removing spaces between the numbers | Excel Discussion (Misc queries) | |||
removing unnecessary spaces from multiple cells | Excel Worksheet Functions | |||
Removing spaces in cells with data in it | Excel Discussion (Misc queries) | |||
Removing trailing spaces from cells ? | Excel Worksheet Functions | |||
Removing Spaces in a Cell | Excel Worksheet Functions |