Formating a Cell

Suresh Kusunuri

Board Regular
Joined
Dec 28, 2007
Messages
138
Office Version
  1. 2007
Platform
  1. Windows
Hi All,

I have codes like “29ABCDE1234X2YZ” or “2ABCDE1234X2YZ”. The code should be total 15 Digits/Letters.
In the second code it contains 14 Digits/Letters only.
Can anybody suggest me to prefix “0” before 2 by formatting the cell (without using formula or function).
Because I want to use a formula by using LEFT(___,2).
I used “000000000000000” in custom format. But it’s not worked.

Thanks in Advance
Suresh
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Maybe : =LEFT(REPT("0",15-LEN(A1)) & A1,2)
 
Upvote 0
If you format the cell, you don't actually change the value of the cell, therefore you would not be able to use left(x,2).
So you will have to change the cell value.
 
Upvote 0
footoo is correct.... I assumed from the OP's original message that users were only putting in 14 or 15 characters. If it is possible for a user to put in less and the OP would want "00" returned for them, then this modification to my formula (modeled after footoo's formula in Message #2, just applied differently) should work...

=LEFT(RIGHT(REPT(0,15)&A1,15),2)
 
Upvote 0
I think 2 zeros should be sufficient to prefix since only 2 characters are required in the end result.

=LEFT(RIGHT("00"&A1,15),2)
 
Upvote 0
maybe =BASE(IFERROR(--LEFT(A1,2),--LEFT(BA1,1)),10,2)
of course this is longer than above ;)

edit: it doesn't work on XL2007, I overlooked version
 
Upvote 0
Thanks a lot all of you.
Mr. Rick Rothstein & Mr. Peter SSs formulas are working perfectly for me.
Thanks both of you for suggestions and Formula.
Suresh
 
Upvote 0

Forum statistics

Threads
1,215,406
Messages
6,124,720
Members
449,184
Latest member
COrmerod

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