Can somebody help me fix the following:

When I run the following line of code:

Worksheets(destinationSheet).ChartObjects(chartToCopy).Activate

where destinationSheet is a string with the name of the sheet "Output 2", and chartToCopy is also a string with the name of a chart "char 11"

I get a "Run-time error '1004':
Unable to get the ChartObjects property of the Worksheet class."


I think it worked when I used Activesheet.ChartObjects(chartToCopy).Activate but I do not want to make it dependent on being on that sheet.