Code:
Sub DailyToWeekly()
'Find Last Row
Dim DLR As Long, WLR As Long
DLR = Sheets("Daily").Range("D10000").End(xlUp).Row
WLR = Sheets("Weekly").Range("D10000").End(xlUp).Row
[COLOR=#ff0000]Sheets("Daily").Range("C2:G" & DLR).EntireRow.Copy Destination:=Sheets("Weekly").Range("C1:G" & WLR).End(xlUp).Offset(1, 0)[/COLOR]
End Sub
I am attempting to copy data from Columns C:G in the Daily tab, and past them below the last line in the Weekly Tab. I cannot figure out the issue with the error.