Link to home
Start Free TrialLog in
Avatar of Luis Diaz
Luis DiazFlag for Colombia

asked on

VBA Excel: remove specific string

Hello experts,

I have in a specific column the following values

Z_1toto585
Z1_toto868
Z3_TOTO85886

I would like to have a macro that do the following:

1-Ask the user "Please select the column in which you want to remove the specific string"
2-Remove all the string before toto so after I launch the macro the result should be the following:

toto585
toto868
TOTO85886

Thank you very much for your help.
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Sub RemovePrefix()

Dim strCol As String
Dim lngLastRow As Long
Dim lngRow As Long

strCol = InputBox("Please select the column in which you want to remove the specific string", "Choose Column Letter")
lngLastRow = Range(strCol & "1048576").End(xlUp).Row

For lngRow = 1 To lngLastRow
    Cells(lngRow, strCol).Value = Split(Cells(lngRow, strCol).Value, "_")(1)
Next

End Sub

Open in new window

Avatar of Luis Diaz

ASKER

Thank you Martin.  I see in your proposal that the reference is "_" however if we have z223toto133 the procedure is not going to work. The idea is to retain everything as of toto and exclude everything before toto.
Thank tou again for your help.
Will it always be "toto"? If not then what is the general rule?
It will always be toto or TOTO.
ASKER CERTIFIED SOLUTION
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It works! Thank you!
You're welcome and I'm glad I was able to help.

In my profile you'll find links to some articles I've written that may interest you.
Marty - MVP 2009 to 2015, Experts-Exchange Top Expert Visual Basic Classic 2012 to 2014