Thanks Luke, I was not familiar with the camera tool so i added it to the ribbon and then recorded a macro to see how it works. When I try to run the macro, it breaks in the 3rd line (see code below). I simply used the tool to take a screenshot of a graph and pasted the image on the same worksheet. Then I deleted the image and tried to re-run the macro, but it always breaks on line 3. I am far from being a VB expert; I usually rip off code from the net and am able to customize it, but am very poor at really understanding what I am doing........
Sub cam()
'
' cam Macro
'
'
Range("C2:O13").Select
Selection.Copy
'this is the line that always breaks:
ActiveSheet.Shapes.AddShape(, 977.25, 30#, 72#, 72#).Select
ActiveSheet.Shapes.Range(Array("Picture 13")).Select
Application.CutCopyMode = False
Application.Goto Reference:="R2C3:R13C15"
ActiveCell.FormulaR1C1 = _
"MILL: AVERAGE PACKAGE TPD "
Range("S19").Select
End Sub