Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a column that displays zipcodes in the Zip Code format, but I am
trying to create a column to the left of that column that will display the first three digits of the zip code and I am having issues bringing forward the leading zeros. I have tried custom formatting and am using the following formula to bring the first three digits over =LEFT(B4005,3); this formula brings over the first three digits in all cases except the leading zeros. I am at a loss. Any assistance would be greatly appreciated. Karen |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you so much, you guys are great.
"John Bundy" wrote: You need to add the zeroes with the test statement or format, her is an example =LEFT(TEXT(A1,"00000"),3) -- -John Northwest11 Please rate when your question is answered to help us and others know what is helpful. "klmiura" wrote: I have a column that displays zipcodes in the Zip Code format, but I am trying to create a column to the left of that column that will display the first three digits of the zip code and I am having issues bringing forward the leading zeros. I have tried custom formatting and am using the following formula to bring the first three digits over =LEFT(B4005,3); this formula brings over the first three digits in all cases except the leading zeros. I am at a loss. Any assistance would be greatly appreciated. Karen |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you check, I think you will find that the zeros are not really there, but
that those cells have a custom format of 00000, which is telling the cell to make 123 look like 00123. You just need to do the same thing: =LEFT(TEXT(B2,"00000"),3) "klmiura" wrote: I have a column that displays zipcodes in the Zip Code format, but I am trying to create a column to the left of that column that will display the first three digits of the zip code and I am having issues bringing forward the leading zeros. I have tried custom formatting and am using the following formula to bring the first three digits over =LEFT(B4005,3); this formula brings over the first three digits in all cases except the leading zeros. I am at a loss. Any assistance would be greatly appreciated. Karen |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you so much!
"BoniM" wrote: If you check, I think you will find that the zeros are not really there, but that those cells have a custom format of 00000, which is telling the cell to make 123 look like 00123. You just need to do the same thing: =LEFT(TEXT(B2,"00000"),3) "klmiura" wrote: I have a column that displays zipcodes in the Zip Code format, but I am trying to create a column to the left of that column that will display the first three digits of the zip code and I am having issues bringing forward the leading zeros. I have tried custom formatting and am using the following formula to bring the first three digits over =LEFT(B4005,3); this formula brings over the first three digits in all cases except the leading zeros. I am at a loss. Any assistance would be greatly appreciated. Karen |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Leading Zero with Function | Excel Discussion (Misc queries) | |||
keep leading zeros when using the paste spec. multiply function | Excel Discussion (Misc queries) | |||
Keep Leading Zero | Excel Discussion (Misc queries) | |||
Leading 0's | Excel Discussion (Misc queries) | |||
leading 0 | Excel Worksheet Functions |