Excel Mac, simply cannot convert "text" numbers to pure numbers

MSC

Board Regular
Joined
Sep 23, 2004
Messages
57
Office Version
  1. 2021
Platform
  1. MacOS
I've tried everything.....

I pasted some datapoints from Gmail into Mac Excel & now want to manipulate them.

I've tried:
-Copy paste special Operation Add, or Multiply.
-Multiplying by 1, or adding zero
-Text to columns
-Outright changing the format
-Even using =VALUE(TRIM(CLEAN(A1))) leads to a #VALUE! result
-Note, The exclamation point does not appear. The numbers are left justified.

I manually changed the first number just to prove I wasn't going crazy......thanks, Mike
 

Attachments

  • Doc1.jpg
    Doc1.jpg
    17.8 KB · Views: 9

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
You could have a zero length character (codes 10,13 or 160 and many others). Have you examined text length with the LEN functions, or do a Code(Right(cellref,1)) and see if the value is not a typical numeric character value.
 
Upvote 0
Solution
What do you get with
Excel Formula:
=CODE(MID(A1,SEQUENCE(,LEN(A1)),1))
 
Upvote 0
Thanks, when I put
=CODE(MID(A1,SEQUENCE(,LEN(A1)),1))
in the next column, I get
1679937838810.png
 
Upvote 0
You could have a zero length character (codes 10,13 or 160 and many others). Have you examined text length with the LEN functions, or do a Code(Right(cellref,1)) and see if the value is not a typical numeric character value.
Well, I feel a bit silly now - I tried just =LEN and saw there was 1 more character than what was represented by the numbers & decimal. I.E. ......trailing space. Find/replace, good to go. Thank you both for your suggestions that helped spur this solution - much appreciated.
 
Upvote 0
I don't know if Macs use a different system, but for me Code 202 is Ê rather than a space.
But good to know your sorted & thanks for the feedback.
 
Upvote 0
Well, I feel a bit silly now - I tried just =LEN and saw there was 1 more character than what was represented by the numbers & decimal. I.E. ......trailing space. Find/replace, good to go. Thank you both for your suggestions that helped spur this solution - much appreciated.
I'm glad you were able to find a solution here!
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,928
Members
449,094
Latest member
teemeren

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