|
Re: Macro question in Excel
The code works fine in Excel 2000 once the next line is removed.
---------- Post added at 10:32 ---------- Previous post was at 10:20 ----------
Macros aren't very efficent.
This performs the same function in half the lines
With Worksheets("ccreport")
.Range("E:F").Cut
.Range("B:C").Insert
.Range("b1:c2").ClearContents
End With
Application.CutCopyMode = False
|