Complete rows based on cell value.

dafly

New Member
Joined
Apr 16, 2015
Messages
4
I’d like to create rows of data based on the data in some other rows. Here is an esample of what I am trying to do.

Comma delimitation

Buffalo, 3
Chicago,2
Atlanta, 2

From those three rows, i’d Like to have the following filled out on the same sheet starting at say row 100:

Buffalo
Buffalo
Buffalo
Chicago
Chicago
Atlanta
Atlanta

It’s kinda like a reverse countif
Any help would be great.

Thanks in advance.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
How about
Code:
Sub dafly()
   Dim cl As Range
   Dim Splt As Variant
   Dim NxtRw As Long
   
   NxtRw = 100
   For Each cl In Range("A1", Range("A" & Rows.Count).End(xlUp))
      Splt = Split(cl.Value, ",")
      Range("A" & NxtRw).Resize(Splt(1)).Value = Splt(0)
      NxtRw = NxtRw + Splt(1)
   Next cl
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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