Irregular Data Set

IdabaMalouki

New Member
Joined
Sep 10, 2024
Messages
15
Office Version
  1. 2021
Platform
  1. Windows
Someone here helped write a macros for an irregular data set I had. The site I paste and copy the data from has changed the format. Here is the original VBA macros for the old data set:

VBA Code:
Sub sortdata()
  Dim a As Variant, b As Variant
  Dim i As Long, k As Long, lr As Long, n As Long
  
  lr = Range("A" & Rows.Count).End(3).Row
  n = 16 - (lr Mod 16)
  
  a = Range("A1:A" & lr + n).Value
  ReDim b(1 To UBound(a, 1), 1 To 7)
  
  For i = 1 To UBound(a, 1) Step 16
    k = k + 1
    b(k, 1) = a(i, 1)
    b(k, 2) = a(i + 1, 1)
    b(k, 3) = a(i + 4, 1)
    b(k, 4) = a(i + 5, 1)
    b(k, 5) = a(i + 9, 1)
    b(k, 6) = a(i + 12, 1)
    b(k, 7) = a(i + 13, 1)
    k = k + 1
    b(k, 2) = a(i + 2, 1)
    b(k, 3) = a(i + 6, 1)
    b(k, 4) = a(i + 7, 1)
    b(k, 5) = a(i + 10, 1)
    b(k, 6) = a(i + 14, 1)
    b(k, 7) = a(i + 15, 1)
  Next

  Range("C2").Resize(UBound(b, 1), UBound(b, 2)).Value = b
End Sub


Can someone please help tweak that code so that the new irregular data set in this Excel spreadsheet organized data in column A into columns C-I?
 

Attachments

  • Screenshot (32).png
    Screenshot (32).png
    202.2 KB · Views: 8
Last edited by a moderator:
I like to program with arrays, but in this case, we can solve it like this:

VBA Code:
Sub organized_data_v1()
  Dim i As Long, k As Long
  
  Application.ScreenUpdating = False
  k = 2
  For i = 1 To Range("A" & Rows.Count).End(3).Row Step 20
    Range("C" & k).Value = Range("A" & i + 17)
    Range("D" & k).Resize(1, 6).Value = Application.Transpose(Range("A" & i + 3).Resize(6).Value)
    Range("D" & k + 1).Resize(1, 6).Value = Application.Transpose(Range("A" & i + 9).Resize(6).Value)
    k = k + 2
  Next
  Application.ScreenUpdating = True
End Sub

🤗
 
Upvote 0
Solution
I like to program with arrays, but in this case, we can solve it like this:

VBA Code:
Sub organized_data_v1()
  Dim i As Long, k As Long
 
  Application.ScreenUpdating = False
  k = 2
  For i = 1 To Range("A" & Rows.Count).End(3).Row Step 20
    Range("C" & k).Value = Range("A" & i + 17)
    Range("D" & k).Resize(1, 6).Value = Application.Transpose(Range("A" & i + 3).Resize(6).Value)
    Range("D" & k + 1).Resize(1, 6).Value = Application.Transpose(Range("A" & i + 9).Resize(6).Value)
    k = k + 2
  Next
  Application.ScreenUpdating = True
End Sub

🤗

I like to program with arrays, but in this case, we can solve it like this:

VBA Code:
Sub organized_data_v1()
  Dim i As Long, k As Long
 
  Application.ScreenUpdating = False
  k = 2
  For i = 1 To Range("A" & Rows.Count).End(3).Row Step 20
    Range("C" & k).Value = Range("A" & i + 17)
    Range("D" & k).Resize(1, 6).Value = Application.Transpose(Range("A" & i + 3).Resize(6).Value)
    Range("D" & k + 1).Resize(1, 6).Value = Application.Transpose(Range("A" & i + 9).Resize(6).Value)
    k = k + 2
  Next
  Application.ScreenUpdating = True
End Sub

🤗
Thank you, sir. And thanks again for helping with the original problem.
 
Upvote 0

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