I posted a similar file to the one I'm sending a while back. I thought the issue was resolved, but when I download the information, it comes out asymmetrical, and the code used to find it picks up some cells that are out of range.
The situation is:
I work with an accounting system called SAP, and ever so often I've got the "privilege" of updating a vendors list. The System spits out the information in a jumbled manner. I thought the information was uniformed, but to my dismay, it isn't. In Columns C, J, and M, on the sheet named "Confused Dump" I need to get the information relating to the cells beside the cells B8, B19, B22, B28, etc (vendor, City, Street, Pay Term, etc, I've highlighted them in green), and I need to put them on the sheet named "Completed_Format" in the format on that sheet.
The columns always have the same data, but not in the same row sequence.
I tried adapting a code seen here, but it didn't work. Is there some code that can solve my problem?
I've attached the file with the information changed. The Confused_Dump information goes over 40000 lines on the original dump.
Leith Ross gave me the following code, but it worked because most of the information was symmetrical.


Sub Macro1()

  Dim DstWks As Worksheet
  Dim LastRow As Long
  Dim R As Long
  Dim Rng As Range
  Dim SrcWks As Worksheet
  Dim StartRow As Long
    
    R = 2
    Set SrcWks = Worksheets("Confused_Dump")
    Set DstWks = Worksheets("Completed_Format")
    
      With SrcWks
        StartRow = 8
        LastRow = Cells(Rows.Count, "B").End(xlUp).Row
        LastRow = IIf(LastRow < StartRow, StartRow, LastRow)
      End With
      
      With DstWks.UsedRange
        Set Rng = .Offset(1, 0)
        Set Rng = Rng.Resize(RowSize:=.Rows.Count + 1)
        Rng.ClearContents
      End With
      
         Do
           LastRow = SrcWks.Cells(StartRow, "B").End(xlDown).Row
           If LastRow = SrcWks.Rows.Count Then Exit Do
             With SrcWks
               DstWks.Cells(R, 1) = .Cells(StartRow, "C")        'Vendor
               DstWks.Cells(R, 2) = .Cells(StartRow + 5, "C")    'Name
               DstWks.Cells(R, 3) = .Cells(StartRow + 14, "C")   'City
               DstWks.Cells(R, 4) = .Cells(StartRow + 11, "C")   'Street
               DstWks.Cells(R, 5) = .Cells(StartRow + 11, "K")   'Postal Code
               DstWks.Cells(R, 6) = .Cells(StartRow + 5, "K")    'Country
               DstWks.Cells(R, 7) = .Cells(StartRow + 6, "K")    'Region
               DstWks.Cells(R, 8) = .Cells(StartRow + 20, "C")   'Payment Terms
               DstWks.Cells(R, 9) = .Cells(StartRow + 2, "N")    'Created On
               DstWks.Cells(R, 10) = .Cells(StartRow + 4, "N")   'Phone 1
               DstWks.Cells(R, 11) = .Cells(StartRow + 5, "N")   'Phone 2
               DstWks.Cells(R, 12) = .Cells(StartRow + 6, "N")   'Fax
             End With
           R = R + 1
           StartRow = LastRow + 2
         Loop
    
End Sub
Thanks,
Xrull