Add placeholder in last section

playinpearls

New Member
Joined
Aug 11, 2009
Messages
4
Hi,

I've got a list of device names and I need the last section of the name to have 3 digits.

Here is a small example:

SPT-01-1
SPT-01-20
SPT-01-250

I need:

SPT-01-001
SPT-01-020
SPT-01-250

I've tried a couple formatting techniques and watched a couple tutorials on similar problems but the dashes seem to be the kicker. Whats the easiest way to work this?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
=LEFT(A1,FIND("{",SUBSTITUTE(A1,"-","{",2))-1)&"-"&TEXT(MID(A1,FIND("{",SUBSTITUTE(A1,"-","{",2))+1,255),"000")
fill down
 
Upvote 0

Forum statistics

Threads
1,215,410
Messages
6,124,749
Members
449,186
Latest member
HBryant

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