I have an Excel(w/VBA) application where I do a copy&paste;
a range data area as a picture image-(CopyAsPicture).
"Sheet1" is a hidden sheet.
Currently I do this:
Application.Screenupdating=False
Sheets("Sheet1").Activate
Sheets("Sheet1").Range("A1:H20").Select
Copy this selected area.
Sheets("Chart1").Activate
Paste this selected area to Chart1.
Is there any method ( perhaps with objects ),
to do the copy&paste without having to do the
Sheets("Sheet1").Activate &
Sheets("Chart1").Activate
to move the data to Chart1 ?