Sub Macro1()
Dim lr As Long
Dim i As Integer
Range("a20:ab20").Copy
Workbooks.Open Filename:="C:\Users\max.murrell\Documents\Coventry Gateway South\Tracking\Main\master tracking sheet.xlsm"
Workbooks("master tracking sheet.xlsm").Activate
Sheets("Recieved Results").Select
i = Worksheets("Recieved Results").cells(Rows.Count, 1).End(xlUp).Rows.Offset(1, 0)
cells(i + 1).PasteSpecial
Application.CutCopyMode = False
End Sub
Hi, im trying to paste on the last line in another work book. it is currently pasting on the first line. i dont believe my counter is right but im not sure why its not right. i have checked online but ive come to a bit of a brick wall. any help would greatly appreciated. thanks in advance max