Remove first 3 characters

REGCAST013

Board Regular
Joined
May 31, 2008
Messages
58
Hello all,

I have a data list that I need to remove the first 3 characters and forgot how to do it.

example
00-exe
10-cdc

result needed
exe
cdc


All start with 2 numbers then a dash that I would like removed.
This should be an easy one for this forum!

Your help is appreciated!

Regina
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
This will take everything from the 4th digit to the 10th digit and remove any spaces, in case you need more room.

TRIM(MID(A1,4,10))
 
Upvote 0
Try this:
• Select the single-column range of cells to be impacted
• Data.Text-to-columns
...Check: Fixed_width...Click: Next
...Click between the 3rd and 4th characters to insert a break point
...Click: Next
...Select the first "column"...Click: Skip
...Click: Finish

Does that help?
 
Upvote 0
This will take out the first 3 regardless of how many characters there are.

=RIGHT(A2,(LEN(A2)-3))

Of course if there are only ever 3 characters after the dash you could always use =Right(A2,3)
 
Upvote 0

Forum statistics

Threads
1,224,532
Messages
6,179,388
Members
452,908
Latest member
MTDelphis

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