Formatting a cell to contain 8 characters

Johnny Thunder

Well-known Member
Joined
Apr 9, 2010
Messages
693
Office Version
  1. 2016
Platform
  1. MacOS
Hello friends,


I am trying to run a lookup on a row of data that came out with one character in each cell, my lookup table has the same characters but has 7 preceeding zeros depending on the number.

In total all cells contain an 8 character cell but using Format Cell>Special>00000000 does not work, it only makes the cells look correct but when you select a cell it still appears as a one character cell????

Anyone know how to resolve?

Some of the numbers I need to make 8 characters cells.

9
12
22
5

Needs to be

00000009
00000012
00000022
00000005


Excel 2003
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
If the lookup table is text formatted you can use a TEXT function on the lookup value, something like this

=VLOOKUP(TEXT(A1,"00000000"),B1:C10,2,0)
 
Upvote 0
Hello friends,


I am trying to run a lookup on a row of data that came out with one character in each cell, my lookup table has the same characters but has 7 preceeding zeros depending on the number.

In total all cells contain an 8 character cell but using Format Cell>Special>00000000 does not work, it only makes the cells look correct but when you select a cell it still appears as a one character cell????

Anyone know how to resolve?

Some of the numbers I need to make 8 characters cells.

9
12
22
5

Needs to be

00000009
00000012
00000022
00000005


Excel 2003
Try it like this...

TEXT(A1,"00000000")

In a lookup formula...

=VLOOKUP(TEXT(A1,"00000000"),J:K,2,0)
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,833
Members
452,947
Latest member
Gerry_F

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