Create Rows Dynamically

LuxCoder

New Member
Joined
Apr 8, 2018
Messages
6
Hi,

I need to create new rows in separate worksheet based on number ranges. I think i can explain better with an example:

Existing Table

FromToFirst Name Middle NameLast Name
100101ABC
214216XYZ

<tbody>
</tbody>

Required Table

100ABC
101ABC
214XYZ
215XYZ
216XYZ

<tbody>
</tbody>

Thanks in advance!

Lux
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try this for results starting "H1"
Code:
[COLOR="Navy"]Sub[/COLOR] MG08Apr15
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range, c [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long,[/COLOR] Ac [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long,[/COLOR] Ray()
[COLOR="Navy"]Set[/COLOR] Rng = Range("A2", Range("A" & Rows.Count).End(xlUp))
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
        [COLOR="Navy"]For[/COLOR] Ac = Dn.Value To Dn.Offset(, 1).Value
            c = c + 1
            ReDim Preserve Ray(1 To 4, 1 To c)
            Ray(1, c) = Ac: Ray(2, c) = Dn.Offset(, 2).Value
            Ray(3, c) = Dn.Offset(, 3).Value: Ray(4, c) = Dn.Offset(, 4).Value
        [COLOR="Navy"]Next[/COLOR] Ac
[COLOR="Navy"]Next[/COLOR] Dn
Range("H1").Resize(c, 4) = Application.Transpose(Ray)
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
Welcome to the MrExcel board!

Another variation to try (in a copy of your workbook). This assumes data in active sheet columns A:E & puts results in the same sheet columns H:K (though the results could be put anywhere of course).

Code:
Sub Make_Rows()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long
  
  With Range("A2", Range("E" & Rows.Count).End(xlUp))
    a = .Value
    ReDim b(1 To Evaluate("SumProduct(" & .Columns(2).Address & "-" & .Columns(1).Address & "+1)"), 1 To 4)
    For i = 1 To UBound(a)
      For j = a(i, 1) To a(i, 2)
        k = k + 1
        b(k, 1) = j: b(k, 2) = a(i, 3): b(k, 3) = a(i, 4): b(k, 4) = a(i, 5)
      Next j
    Next i
    .Offset(, .Columns.Count + 2).Resize(UBound(b, 1), UBound(b, 2)).Value = b
  End With
End Sub
 
Last edited:
Upvote 0
Thank you so much Sir,

It worked perfectly! Can you also please advice what if i have 3 more columns in first table of my question. How can i have n columns?

Regards

Lux

Welcome to the MrExcel board!

Another variation to try (in a copy of your workbook). This assumes data in active sheet columns A:E & puts results in the same sheet columns H:K (though the results could be put anywhere of course).

Code:
Sub Make_Rows()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long
  
  With Range("A2", Range("E" & Rows.Count).End(xlUp))
    a = .Value
    ReDim b(1 To Evaluate("SumProduct(" & .Columns(2).Address & "-" & .Columns(1).Address & "+1)"), 1 To 4)
    For i = 1 To UBound(a)
      For j = a(i, 1) To a(i, 2)
        k = k + 1
        b(k, 1) = j: b(k, 2) = a(i, 3): b(k, 3) = a(i, 4): b(k, 4) = a(i, 5)
      Next j
    Next i
    .Offset(, .Columns.Count + 2).Resize(UBound(b, 1), UBound(b, 2)).Value = b
  End With
End Sub
 
Upvote 0
Thank you so much Sir,

It worked perfectly!
That's a good start. :)


Can you also please advice .... How can i have n columns?
If the data starts in A1 and row 1 can be used to determine the number of columns of data, then try:
Code:
Sub Make_Rows_v2()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long, c As Long, uba2 As Long
  
  With Range("A2", Range("A" & Rows.Count).End(xlUp)).Resize(, Cells(1, Columns.Count).End(xlToLeft).Column)
    a = .Value
    uba2 = UBound(a, 2)
    ReDim b(1 To Evaluate("SumProduct(" & .Columns(2).Address & "-" & .Columns(1).Address & "+1)"), 1 To UBound(a, 2) - 1)
    For i = 1 To UBound(a)
      For j = a(i, 1) To a(i, 2)
        k = k + 1: b(k, 1) = j
        For c = 3 To uba2
          b(k, c - 1) = a(i, c)
        Next c
      Next j
    Next i
    .Offset(, .Columns.Count + 2).Resize(UBound(b, 1), UBound(b, 2)).Value = b
    .Offset(-1, .Columns.Count + 3).Resize(1, uba2 - 2).Value = .Offset(-1, 2).Resize(1, uba2 - 2).Value
    .Offset(-1, .Columns.Count + 2).Cells(1).Value = "Number"
    .Offset(, .Columns.Count + 2).CurrentRegion.Columns.AutoFit
  End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,845
Members
449,471
Latest member
lachbee

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