asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,286
- Office Version
- 2013
- Platform
- Windows
Code:
Dim LR As Long
Range("AL2:AO53").Copy
Workbooks.Open Filename:="S:\Entries\Entries.xls"
LR = Range("A" & Rows.Count).End(xlUp).Row
ActiveSheet.Range("A" & LR + 1).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveWorkbook.Save
ActiveWindow.Close
Good Day,
Im having trouble with the above code.
Its simply copying the datas from master file and paste into the closed workbook.
Could anybody help me on that why its not copying from A1 and all the way down.
The datas goes different ranges and when i make the next click its overwriting the new datas on same location.
Many Thanks