Currently I have this to do the loop:
Sub Test1()
Dim x As Integer
NumRows = Range("A3", Range("A3").End(xlDown)).Rows.Count
Range("A3").Select
For x = 1 To NumRows
Range(ActiveCell, ActiveCell.Offset(0, 13)).Copy
Sheets("test").Select
Range("A1:O60").Find("").Select
Selection.PasteSpecial Paste:=xlValues
Sheets("Data Analysis").Select
ActiveCell.Offset(1, 0).Select
Next
End Sub
The part I don't get is, how can I copy the range here 'Range(ActiveCell, ActiveCell.Offset(0, 13)).Copy' but also do a search to find the correct component on the UK tab before pasting.
Bookmarks