Hello Hawkmoon,
The macro here has been added to the attached workbook. You can use CTRL+Z as the shortcut to run it.
Sub LoadData()
Dim Data As Variant
Dim LastRow A Long
Dim R As Long
Dim StartRow As Long
StartRow = 9
LastRow = 138
Application.ScreenUpdating = False
For R = StartRow To LastRow Step 13
Data = Split(Cells(R + 4, "A"), ",")
Cells(R + 9, "G") = Data(1)
Data = Split(Cells(R + 6, "A"), ",")
Cells(R + 3, "G") = Data(0)
Cells(R + 7, "G") = Data(2)
Data = Split(Cells(R + 7, "A"), ",")
Cells(R + 1, "G") = Data(0)
Cells(R + 5, "G") = Data(2)
Cells(R + 11, "G").Formula = "=G" & Trim(Str(R + 9)) & "*6"
Next R
Application.ScreenUpdating = True
End Sub
Sincerely,
Leith Ross
Bookmarks