Get rid of leading spaces, Trim and Clean doesn't work, Code shows 0

kangnade

New Member
Joined
Oct 9, 2017
Messages
8
Hi gurus,

I've read many posts on various forum to solve the problems on the leading space(or space-like stuff), but after trying many functions, including Trim(), Trim(Clean()),Code(Left()), and other ways, I still cannot get rid of it...

Originally I pasted these from a word document, and selected paste with only value, but it doesn't work. Then I re-pasted it into a word, then back into Excel, still doesn't work with Trim() or Trim(Clean()).

I also tried if it is 160, but the Code() shows 0.

Millions of thanks for your help and kindness!

If you need a sample of the problem I am encountering, don't hesitate to leave me an email below I can forward to you. I am new here so I cannot post with attachment...

Thanks a lot!
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
I know what you are mentioning, but actually I need those foreign characters because this is gonna be a vocab list for foreigners..the thing is that someone else pasted the original source in a word doc, and then I copied the word doc and pasted in excel, then the bizarre thing happened...I actually didn't know what was going on there, but if you check the dropbox file, it seems that the online excel shows this type of symbol: [FONT=宋体]

​But, in the excel file, you don't see it...so I have no idea how to remove that..
[/FONT]
 
Upvote 0
Seeing as thisoldman has worked out what the character was :pray: then the below code should work as well..

Code:
Sub TestMe()
Range("B2:B16").Replace What:=ChrW(58853), Replacement:="", LookAt:=xlPart
End Sub
 
Upvote 0
I used another formula:
=UNICODE(LEFT(A1))

These mixed scripts can be confounding. As well as the Chinese characters, the colons in your strings are also wide characters, =UNICHAR(65306)
 
Upvote 0
I just realized that this would also work for the examples we were given. The formula deletes the first character and any repeats of that character.

=SUBSTITUTE(A1,LEFT(A1),"")
 
Upvote 0

Forum statistics

Threads
1,216,084
Messages
6,128,721
Members
449,465
Latest member
TAKLAM

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top