View Single Post
  #5   Report Post  
Makoto Shimizu Makoto Shimizu is offline
Junior Member
 
Posts: 1
Smile

Excellent tip ! Did work perfectly ! Let me translate into Brazilian Portuguese !

Dica excelente ! Remove os espaços em branco após o último caracter da célula do Excel !

=--trim(substitute(a1,char(160),""))

Remover espaços em branco na célula do Excel

Makoto Shimizu


Quote:
Originally Posted by Dave Peterson View Post
=trim() will return text.
=--trim() will coerce things that look like numbers to numbers.

But there are other "white space characters" that aren't really spaces:

=--trim(substitute(a1,char(160),""))

=char(160)
is that HTML non-breaking space.

But instead of using formulas, maybe you could:
select the range to fix
edit|replace:
what: (space character)
with: (leave blank)
replace all

and to fix the HTML non-breaking character:
select the range to fix
edit|replace:
what: alt-0160
with: (leave blank)
replace all

hit and hold the alt key while you type 0160 on the numeric key pad.


Pai wrote:

I have copy some data from a website. And copy to Excel Sheet.

Now i trying to Sum the total of column but neither Autosum nor Sum Function
Work.

There are Space after the Numbers. I tried Trim Function but it is not
Working.

=trim(A1)

Anybody can help me

Hardeep kanwar


--

Dave Peterson