Separate String by Comma and Insert In New Row

JPatty

New Member
Joined
Sep 21, 2022
Messages
14
Office Version
  1. 365
  2. 2019
  3. 2011
Platform
  1. Windows
Please help, I need to separate the state abbreviation by comma in Column B and keep the price in Column A aligned with the correct state. Each state abbreviation should be in a new row, and the price needs to as well.
 

Attachments

  • Separate String 1.png
    Separate String 1.png
    24.7 KB · Views: 15
  • Separate String 2.png
    Separate String 2.png
    45.2 KB · Views: 14
Here is another vba option if you are interested.

VBA Code:
Sub SplitStates()
  Dim a As Variant
  
  With Range("A2", Range("B" & Rows.Count).End(xlUp))
    a = Application.Transpose(Split(Join(Application.Transpose(Evaluate(.Columns(1).Address & "&"";""&substitute(" & .Columns(2).Address & ","" ""," & .Columns(1).Address & "&"";"")")), ","), ","))
  End With
  With Range("C2").Resize(UBound(a))
    .Value = a
    .TextToColumns DataType:=xlDelimited, Semicolon:=True, Other:=False
  End With
End Sub
 
Upvote 0

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,214,861
Messages
6,121,973
Members
449,059
Latest member
oculus

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