Number Format

jeffdolton

Board Regular
Joined
Dec 21, 2020
Messages
100
Office Version
  1. 2010
Platform
  1. Windows
Hi, I have copied a series of numbers from a website but cannot get these figures to act as a number. I've tried formatting, copy and paste value, find and place but without luck.

Here is one of the numbers:

4 3 5870675289

Can you help please.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
looks like there is a space in there after the number 3
 
Upvote 0
Copy the below into a blank sheet. Then copy your number into A2 and show us what you see.
I am expecting UniCode numbers on Line 2 in the 8000 range.

Book1
ABCDEFGHIJKLMNOPQR
1Orig NosPosition -->12345678910111213141516
24 3 587067528952820251820253565548545553505657#VALUE!#VALUE!
Sheet1 (2)
Cell Formulas
RangeFormula
C2:R2C2=UNICODE(MID($A2,C1,1))
 
Upvote 0
Copy the below into a blank sheet. Then copy your number into A2 and show us what you see.
I am expecting UniCode numbers on Line 2 in the 8000 range.

Book1
ABCDEFGHIJKLMNOPQR
1Orig NosPosition -->12345678910111213141516
24 3 587067528952820251820253565548545553505657#VALUE!#VALUE!
Sheet1 (2)
Cell Formulas
RangeFormula
C2:R2C2=UNICODE(MID($A2,C1,1))
Mnay thnaks,

I've used a different number, this is what I get:

Orig NiPosition
1​
2​
3​
4​
5​
6​
7​
8​
3 4 1 9 0 8 6 0
51​
8202​
52​
8202​
49​
8202​
57​
8202​
 
Upvote 0
Do you know how to use VBA ?
  • Make your problem sheet the active sheet.
  • Then go to VBA by hitting Alt+<F11>
  • If you can't see the immediate window then hit Ctrl+G
  • Copy the below into the immediate window and hit enter
VBA Code:
ActiveSheet.UsedRange.Replace ChrW(8202), ""
 
Upvote 0
Do you know how to use VBA ?
  • Make your problem sheet the active sheet.
  • Then go to VBA by hitting Alt+<F11>
  • If you can't see the immediate window then hit Ctrl+G
  • Copy the below into the immediate window and hit enter
VBA Code:
ActiveSheet.UsedRange.Replace ChrW(8202), ""
The immediate window was greyed out. Do I insert the code into a new module?
 
Upvote 0
Sounds a bit odd.
But is you are happy to create a new module then sure create a new module and paste in:
then run it.
VBA Code:
Sub RemoveCode8202()

    ActiveSheet.UsedRange.Replace ChrW(8202), ""

End Sub
 
Upvote 0
Solution
Sounds a bit odd.
But is you are happy to create a new module then sure create a new module and paste in:
then run it.
VBA Code:
Sub RemoveCode8202()

    ActiveSheet.UsedRange.Replace ChrW(8202), ""

End Sub
Perfect, problem solved - thank you
 
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,207
Members
449,214
Latest member
mr_ordinaryboy

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