help removing character from text string

davillanous1

New Member
Joined
Apr 8, 2015
Messages
1
Hello! I am needing assistance with the following issue. I have a string of text where the 8th character is always a "-" but the amount of characters that follow are different. ex:

amcc-ap-h-d
amcc-ar-h
amcc-as-h-d-a

i need to remove the 8th character from each to return the following

amcc-aph-d
amcc-arh
amcc-ash-d-a

having the string in this format will allow me to use to info for vlookups.

Please help.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Welcome to the Board!

For an entry in cell A1, the formula to remove this might look like:
Code:
=LEFT(A1,7) & MID(A1,9,LEN(A1))
 
Upvote 0
Will this always be the second hyphen??


Excel 2010
AB
1amcc-ap-h-damcc-aph-d
2amcc-ar-hamcc-arh
3amcc-as-h-d-aamcc-ash-d-a
Sheet1
Cell Formulas
RangeFormula
B1=SUBSTITUTE(A1,"-","",2)
 
Upvote 0
Hello! I am needing assistance with the following issue. I have a string of text where the 8th character is always a "-" but the amount of characters that follow are different. ex:

amcc-ap-h-d
amcc-ar-h
amcc-as-h-d-a

i need to remove the 8th character from each to return the following

amcc-aph-d
amcc-arh
amcc-ash-d-a
Give this formula a try...

=REPLACE(A1,8,1,"")
 
Upvote 0
All the above suggestions will work well, excepting No3.

But I like Rick's the best!

I beg to differ.

Given the info provided by the OP it will work just fine.

Edit. Nevermind, I see you you're referring to post 3 not reply 3.
 
Upvote 0
I would have chosen yours as the most elegant solution if only SUBSTITUTE didn't have 3 more letters than REPLACE!
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

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