VBA to remove characters from a comma separated list, where certain characters are found?

RockandGrohl

Well-known Member
Joined
Aug 1, 2018
Messages
788
Office Version
  1. 2010
Platform
  1. Windows
Hi all, need fast help on this as I'm under a timescale.

I have a list of ads due to be placed in a paper and under the "Pickups" for coach travel there is meant to be a list of coach-only pickups, but air and rail have slipped in.

As an example, please see the below:

Code:
[COLOR=#ff0000]Bury St Edmunds, Colchester, Ipswich, Flying from Norwich (NWI), Flying from Stansted (STN)[/COLOR]

So I need to remove everything after "Ipswich", including that last comma, I need to find the first instance of "Flying" and remove everything using that as a start point, to end up with the following:

Code:
[COLOR=#008000]Bury St Edmunds, Colchester, Ipswich[/COLOR]

This is more or less simple enough to do with FIND etc, but the problem is that sometimes the Airport or Rail pickups are buried in the middle, like this:

Code:
[COLOR=#ff0000]Birmingham, Flying from Birmingham (BHX), (RS) Birmingham New Street, Solihull, Sutton Coldfield[/COLOR]

Which would then need to be like this:

Code:
[COLOR=#008000]Birmingham, Solihull, Sutton Coldfield[/COLOR]


Can anyone help me urgently, I have to detect whether "Flying" or "(RS)" is within a set of commas (or at the end!) and then remove just those pickups including their respective commas to end up with just coach pickups (these don't have "(RS)" or "Flying from xxxx" in them)


Really appreciate it, thanks!
 
Last edited:

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

How about
Code:
Function Rock(cl As Range) As String
   Dim sp As Variant
   Dim i As Long
   sp = Split(cl, ", ")
   For i = 0 To UBound(sp)
      If InStr(1, sp(i), "Flying", vbTextCompare) = 0 And InStr(1, sp(i), "(RS)", vbTextCompare) = 0 Then
         Rock = Rock & sp(i) & ", "
      End If
   Next i
   Rock = Left(Rock, Len(Rock) - 2)
End Function
used like
=Rock(A2)
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

Thanks Fluff,

I'm not sure I understand, Rock?

Or =Rock(A2)?
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

You put that in the worksheet like a formula


Book1
AB
2Bury St Edmunds, Colchester, Ipswich, Flying from Norwich (NWI), Flying from Stansted (STN)Bury St Edmunds, Colchester, Ipswich
3Birmingham, Flying from Birmingham (BHX), (RS) Birmingham New Street, Solihull, Sutton ColdfieldBirmingham, Solihull, Sutton Coldfield
Roster
Cell Formulas
RangeFormula
B2=rock(A2)
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

You put that in the worksheet like a formula

AB
2Bury St Edmunds, Colchester, Ipswich, Flying from Norwich (NWI), Flying from Stansted (STN)Bury St Edmunds, Colchester, Ipswich
3Birmingham, Flying from Birmingham (BHX), (RS) Birmingham New Street, Solihull, Sutton ColdfieldBirmingham, Solihull, Sutton Coldfield

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Roster

Worksheet Formulas
CellFormula
B2=rock(A2)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>


This has literally just blown my entire mind to ****, I had no idea you could do this.

INCREDIBLE.

Thank you!
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

I'm not sure I understand, Rock?
Fluff needed to give his function a name, so he used the "Rock" from your forum name "RockandGrohl"



Or =Rock(A2)?
What Fluff posted is called a UDF... user defined function. Here is something that may help you use it...

HOW TO INSTALL UDFs
------------------------------------
If you are new to UDFs, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. You can now use Rock just like it was a built-in Excel function. For example,

=Rock(A2)

If you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

You're welcome & thanks for the feedback.
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

Fluff needed to give his function a name, so he used the "Rock" from your forum name "RockandGrohl"




What Fluff posted is called a UDF... user defined function. Here is something that may help you use it...

HOW TO INSTALL UDFs
------------------------------------
If you are new to UDFs, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. You can now use Rock just like it was a built-in Excel function. For example,

=Rock(A2)

If you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.


Haha, yeah I got the first part, I just had 0 knowledge of UDF's... As soon as Fluff posted the example it clicked.

As a bonus I demonstrated it to some colleagues and their jaws dropped - was completely out of our collective conscious that that could be done! Hats off to Fluff!
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

You're welcome & thanks for the feedback.

Hi Fluff,

Just to confirm I'm not doing anything catastrophically wrong..

String:

Code:
Lichfield, Flying from East Midlands (EMA), Flying from Birmingham (BHX), (RS) Birmingham New Street

This contains 1 Coach, 2 Air and 1 Rail Pickup

Code:
Function Coach(cl As Range) As String   Dim sp As Variant
   Dim i As Long
   sp = Split(cl, ", ")
   For i = 0 To UBound(sp)
      If InStr(1, sp(i), "Flying", vbTextCompare) = 0 And InStr(1, sp(i), "(RS)", vbTextCompare) = 0 Then
         Coach = Coach & sp(i) & ", "
      End If
   Next i
   Coach = Left(Coach, Len(Coach) - 2)
End Function


Function Rail(cl As Range) As String
   Dim sp As Variant
   Dim i As Long
   sp = Split(cl, ", ")
   For i = 0 To UBound(sp)
      If InStr(1, sp(i), "Flying", vbTextCompare) = 0 And InStr(1, sp(i), "(RS)", vbTextCompare) = 1 Then
         Rail = Rail & sp(i) & ", "
      End If
   Next i
   Rail = Left(Rail, Len(Rail) - 2)
End Function


Function Air(cl As Range) As String
   Dim sp As Variant
   Dim i As Long
   sp = Split(cl, ", ")
   For i = 0 To UBound(sp)
      If InStr(1, sp(i), "Flying", vbTextCompare) = 1 And InStr(1, sp(i), "(RS)", vbTextCompare) = 0 Then
         Air = Air & sp(i) & ", "
      End If
   Next i
   Air = Left(Air, Len(Air) - 2)
End Function

So now when I enter =Coach(A1), =Air(A1) or =Rail(A1), it successfully amends the string to only include one of the three types of pickups.

Just to confirm, this is correct? I've done a couple tests and it works, but wanted to make sure I'm not glossing over something important.
 
Upvote 0
Re: [VBA] [Urgent] How to remove characters from a comma separated list, where certain characters are found?

That looks fine :)
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

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