Restructure data

bran8989

New Member
Joined
Sep 14, 2018
Messages
23
I have this code, where I first insert a row on every 15th row, in effort to break apart my data. I then want to to cut what is in rows 2 to 14, and paste to row 1. Then I want to delete the now empty rows 2 to 14, and I want the process to start over (where it now uses row 2 as the pasting row for what is in rows 3 to 15), etc. etc.

Any ideas on the modifications I can make, sorry new to VBA..


Sub insertro()


Dim r As Long, lr As Long
lr = Range("A" & rows.Count).End(xlUp).Row + 100000
For r = 15 To lr Step 15
rows(r).Insert Shift:=xlDown
Next r

i = 1
n = 2
lastrow = ActiveSheet.Cells(rows.Count, 1).End(xlUp).Row


For n = 2 To lastrow


With ActiveSheet
.Range("A" & n, Range("A" & n).End(xlToRight)).Cut .Range("A" & i).End(xlToRight).Offset(, 1)


End With


Next n

End Sub
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Try something along the lines of:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim r As Long, lRow As Long, OutRow As Long, c As Long, lCol As Long, OutCol As Long
With ThisWorkbook.Worksheets("Sheet1")
  lRow = .UsedRange.Cells.SpecialCells(xlCellTypeLastCell).Row
  OutRow = 1: OutCol = .Range("A1").End(xlToRight).Column
  For r = 2 To lRow
    If r Mod 15 = 0 Then
      OutRow = OutRow + 1: OutCol = 0
    End If
    lCol = .Cells(r, 1).End(xlToRight).Column
    For c = 1 To lCol
      OutCol = OutCol + 1
      .Cells(OutRow, OutCol).Value = .Cells(r, c).Value
    Next
  Next
  .Rows(OutRow + (OutCol <> 0) & ":" & lRow).EntireRow.Delete
End With
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Try something along the lines of:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim r As Long, lRow As Long, OutRow As Long, c As Long, lCol As Long, OutCol As Long
With ThisWorkbook.Worksheets("Sheet1")
  lRow = .UsedRange.Cells.SpecialCells(xlCellTypeLastCell).Row
  OutRow = 1: OutCol = .Range("A1").End(xlToRight).Column
  For r = 2 To lRow
    If r Mod 15 = 0 Then
      OutRow = OutRow + 1: OutCol = 0
    End If
    lCol = .Cells(r, 1).End(xlToRight).Column
    For c = 1 To lCol
      OutCol = OutCol + 1
      .Cells(OutRow, OutCol).Value = .Cells(r, c).Value
    Next
  Next
  .Rows(OutRow + (OutCol <> 0) & ":" & lRow).EntireRow.Delete
End With
Application.ScreenUpdating = True
End Sub

Unfortunately this doesnt do anything.. It's calculating in the background, but not completing anything.
 
Upvote 0
It worked on some test data I constructed in line with the implications of what you described. If, as you say, it's not working, you might need to change:
ThisWorkbook.Worksheets("Sheet1")
to:
ActiveSheet
and, if it still doesn't work, you'll need to give a better description of your data layout (e.g. by posting a representative screenshot here, for which, see Posting Aids in the Forum Guidelines: https://www.mrexcel.com/forum/board-announcements/127080-guidelines-forum-use.html).
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,715
Members
448,985
Latest member
chocbudda

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