String Functions

LeeBee

New Member
Joined
Jun 28, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Having problem using functions and need assist.
Am trying to left pad a column with zeros to make all values in column 9 characters.
Below is sample of working function.
ScreenShot272.png


Pasting that function in actual data we see the following with no padded result:
ScreenShot273.png


What am I doing wrong??
Any help is appreciated.

Lee
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi & welcome to MrExcel.

Change the cell format to General & renter the formula.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0
If your values would never go over 9 characters by themselves, you could just do this:
=TEXT(A1,"000000000")
 
Upvote 0
As another option:
Excel Formula:
=REPT("0",9-LEN(A1))&A1
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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