D
Dave Peterson
This line:
Sheets("Daily").Cells(Sfr, sc).Resize(slr - Sfr + 1).Copy
(there are two lines with Sheets("Daily") on them)
My guess is that slr and Sfr aren't what you want them to be.
Add a line like:
msgbox "slr=" & slr & vblf & "Sfr=" & Sfr
right before it. Maybe it'll give you a clue about what's going wrong.
Sheets("Daily").Cells(Sfr, sc).Resize(slr - Sfr + 1).Copy
(there are two lines with Sheets("Daily") on them)
My guess is that slr and Sfr aren't what you want them to be.
Add a line like:
msgbox "slr=" & slr & vblf & "Sfr=" & Sfr
right before it. Maybe it'll give you a clue about what's going wrong.