AlexPeteson
New Member
- Joined
- Feb 19, 2019
- Messages
- 2
Hi Community
The following is an extract of my code. Basically, I'm copying rows of data from source workbooks to a mastercopy workbook.
All fields copied over are fine except for the date files. It went from 07/03/2019 (Source) to 03/07/2019 (Mastercopy).
Is there a value that i can fix this date? Paste special maybe? How can i edit the code based on the below string?
Any advice is greatly appreciated, thanks!
erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range(Cells(erow, 2), Cells(erow, 10))
Regards
Peteson
The following is an extract of my code. Basically, I'm copying rows of data from source workbooks to a mastercopy workbook.
All fields copied over are fine except for the date files. It went from 07/03/2019 (Source) to 03/07/2019 (Mastercopy).
Is there a value that i can fix this date? Paste special maybe? How can i edit the code based on the below string?
Any advice is greatly appreciated, thanks!
erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range(Cells(erow, 2), Cells(erow, 10))
Regards
Peteson