Please use code tangs on your code
Worksheets("Results").Range("A1100").End(xlUp).Offset(1, 0).Value = c.Value
Could be changed
Worksheets("Results").Range("A1100").End(xlUp).Offset(1, 0).Value = c.EntireRow
Assuminng that you have ten rows to copy
Worksheets("Results").Range("A1100").End(xlUp).Offset(0, 1).Resize(, 10) = c.Offset(0, 1).Resize(, 10).Value
Be warned: I have been using the find function for a number of times. If your data is small, it works fine, but with large it is very slow as the code looks at every single row on both sheets
Bookmarks