Hi
Try this change and se if it helps
Sub test()
Dim wb As Workbook
Dim ws As Worksheet
With ThisWorkbook.Sheets("Sheet1")
Rows("3:3").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Delete
End With
For Each wb In Application.Workbooks
For Each ws In wb.Worksheets
If ws.Name = "UK_3" Then
With wb.Sheets("UK_3")
Rows("3:3").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
ThisWorkbook.Activate ' here you have to define the actual workbook you need to have the data, or you will just paste it in to the current wb in the loop, thus making no changes.
Sheets("Sheet1").Select
Range("A3").Select
ActiveSheet.Paste
End With
Exit For
End If
Next ws
Next wb
End Sub
Bookmarks