All.
The following code is giving me the error of "subscript out of range".
Sub carolina()
Dim ws2 As Worksheet
Set ws2 = Sheets("Whatever")
With Sheets(whatever)
.Range("C3
3").Copy
ws2.[C4].PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End With
Application.CutCopyMode = False
Set ws2 = Nothing
Calculate
End Sub
Two things:
1. Please guide me through the error.
2. This code is set up right now to copy from row 3 to row4 today. How can I have it copy to row 5 tomorrow then to row 6 the next day etc. on a daily basis.
Thanx.
The following code is giving me the error of "subscript out of range".
Sub carolina()
Dim ws2 As Worksheet
Set ws2 = Sheets("Whatever")
With Sheets(whatever)
.Range("C3
ws2.[C4].PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End With
Application.CutCopyMode = False
Set ws2 = Nothing
Calculate
End Sub
Two things:
1. Please guide me through the error.
2. This code is set up right now to copy from row 3 to row4 today. How can I have it copy to row 5 tomorrow then to row 6 the next day etc. on a daily basis.
Thanx.