Hi,
In Excel 2003 how can I copy a range from one worksheet to another using VBA
The code below gives me a type mismatch error.
In Excel 2003 how can I copy a range from one worksheet to another using VBA
The code below gives me a type mismatch error.
Code:
For i = 1 To 11
Worksheets.Add after:=Worksheets(Worksheets.Count), Count:=1
Worksheets("Sheet2").Range("A1:D3") = Worksheets(Sheet1).Range("A1:D3")
Next i