Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a performance problem and google doesn't help me. This person has the same problem : http://excel.bigresource.com/Copy-Chart-Print-Very-Slow-1eeSa883.html

When I copy an excel chart with VBA : This is so slooooow.

  Dim myChart As ChartObject
    For Each myChart In consoPDC.ChartObjects
        myChart.Copy
        ...
    Next

Any idea that makes it faster ? For information the objective is to paste them in powerpoint.

The weird thing is that making it manually isn't slow at all

Thanks. Nico.

share|improve this question
Can you please mention the Excel version? Also if you can post the complete code that you are using? I can test it for you? – Siddharth Rout Jul 2 '12 at 16:06
Excel 2003. No need to add any more vba code, the only line struggling is the myChart.copy I can even feel it while debugging. – Nicolas Thery Jul 3 '12 at 11:40
Is the copying slower or the pasting? The reason, I ask is because I tested it and it works just fine for me... – Siddharth Rout Jul 3 '12 at 13:39
Only copying is very slow. Like 5 to 10 seconds. The chart is by the way an histogram built by data computed with a very large amount of formulas. Maybe excel is recalculating the data while copying ? This would be awful. I will try to enable manual calculation before copying. – Nicolas Thery Jul 4 '12 at 17:12
I just removed autocalculation and the problem is still there. Any other idea ? – Nicolas Thery Aug 2 '12 at 13:26

1 Answer

up vote 1 down vote accepted

Because you are making a copy into PowerPoint, i'll suggest you to try out this code:

myChart.CopyPicture Appearance:=xlScreen, Format:=xlBitmap

found this in MS-Help and here

also found a nice hint here, according to, the following code should be faster

myChart.ChartArea.Copy

Testet on a small scale demo, excited to hear about big scale results :) would be nice to have some comparision in seconds, when you try this out.

edit: just another thing to watch out for - memory leaks

if you do extensive copy to clipboard you should watch out to clean up afterwards, otherwise you might fill up your memory quite fast ;) this could also result in weak performance, as many systems might move data to the pagefile, slowing access down.

edit: just if you should be into the last bit of a second and if you have many charts to copy

using For each is slower than to iterate through your objects with a neat loop. However, the code does not look that neat like using for each, but if any sec/millisec counts one should compare them against each other.

I found this in a specialized Book of Micheal Schwimmer, tested it and was suprised. Not sure anymore in which circumstances, but tested it on a bigger scale and confirmed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.