B
Bishop
I have the following code:
With Sheets("DirectorCopy")
.Paste
Why doesn't this work? Keep getting Object doesn't support property or
method. I've tried:
..Cells.Paste
..Paste
..ActiveWorksheet.Paste
..Paste("A1")
..ActiveSheet.Paste Destination:=Worksheets("DirectorCopy").Range("A1")
(which is how the help file says to do it)
None of these work.
what will work here?
With Sheets("DirectorCopy")
.Paste
Why doesn't this work? Keep getting Object doesn't support property or
method. I've tried:
..Cells.Paste
..Paste
..ActiveWorksheet.Paste
..Paste("A1")
..ActiveSheet.Paste Destination:=Worksheets("DirectorCopy").Range("A1")
(which is how the help file says to do it)
None of these work.
what will work here?