How to retain preceding zeros when converting number stored as text

Sean15

Well-known Member
Joined
Jun 25, 2005
Messages
698
Office Version
  1. 2010
Platform
  1. Windows
Hello:

I have a list of numbers in column C stored as text and left indent. Some of the numbers have preceding zeros.
e.g. 000111, 01212, 001451, 12151, 0000001245

When I convert column C to numbers, Excel loses the preceding zeros and right indents.

How can I convert numbers stored as text to numbers without losing preceding zeros?


Regards,

Sean
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You cannot, as leading zeroes hold no significance to numbers (they are meaningless to "numbers").
If the leading zeroes have significance, then what you have is a "string", and not really a "number" (realizing that "strings" can be made up entirely of numbers).

If all your entries were of the same length, you could convert them to numbers, and apply a custom format to them to make them appear as having leading zeroes (even though the underlying values really do not, as it is impossible to store a "number" with leading zeroes).

Can you explain to us exactly what these values are, and how you intend to use them?
Why are you trying to convert them to numbers, if you actually need the leading zeroes?

If we have a better understanding of what it is that you are trying to do, we can give you better direction on how to approach the problem.
 
Last edited:
Upvote 0
Hi:

Column C has invoice numbers and is part of other data downloaded from Microsoft Dynamic AX (worksheet A). I use Index and Match to match invoice numbers from worksheet A and B to return invoice dates from worksheet A. The problem is Index and Match will not work on numbers stored as text. But when I convert column C to numbers, Index and Match returns all required value, but I lose all leading zeros which is part of an invoice number. Make sense? I know leading zero are useless but if there is way I can retain them, and my Index and Match formula still work that would be great.

Regards,

Sean
 
Upvote 0
I don't know if this will help or not. It requires Excel 2013 or newer. You can express the text "numbers"/alpha-numerics as base up to base 36.


A
B
C
D
E
F
1
000111​
01212​
001451​
12151​
0000001245​
2
111​
1212​
1451​
12151​
1245​
In A2:E2 =DECIMAL(A1,10)​
3
000111​
001212​
0001451​
012151​
00000001245​
In A3:E3 =BASE(A2,10,LEN(A1))​
 
Last edited:
Upvote 0
I use Index and Match to match invoice numbers from worksheet A and B to return invoice dates from worksheet A. The problem is Index and Match will not work on numbers stored as text.
Sure it does. It will work fine on Numbers stored as Text.
However, INDEX/MATCH, like VLOOKUP requires that the values from both lists that you are matching on be set-up the same way (i.e. you cannot compare "numbers entered as text" to "numbers entered as numbers). Many times, due to Custom Formatting, they will look the same, but they are not.

One easy way to tell is to use the ISNUMBER function on an entry from each list. They should both return TRUE (if they are both numbers) or they should both return FALSE (if they are both text). If one is True and one is False, that is your issue. I have a strong suspicion that may be what is going on here, based on what you are reporting.

Can you try that and confirm if that is what is happening here?
 
Upvote 0
Hi:

The values are different. I've converted values in column C to numbers and did a TRIM to remove leading spaces. INDEX/MATCH formula is now returning required values.
It seems that downloaded data were not clean.

Regards,

Sean
 
Last edited:
Upvote 0
It seems that downloaded data were not clean.
That is often the culprit!

Glad to hear you got it working now.
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

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