Bugs with solutions
Have you discovered a bug in PowerPoint? Perhaps while designing slides or programming using VBA?
Let us know and we’ll add it here and discuss it with PowerPoint MVPs to see if we can find a workaround.
And maybe even have Microsoft take a look at it!
PowerPoint User Interface
Report something using the form at the end of this page!
PowerPoint VBA Programming
Pasting text into an existing shape
This should work and it did prior to PowerPoint 2007:
Application.ActivePresentation.Slides(1).Shapes(1).TextFrame.TextRange. _ InsertAfter.Paste
But since 2007, it generates the error -2147024809 (80070057) “The specified parameter has an invalid value.”
Workaround:
Application.ActivePresentation.Slides(1).Shapes(1).TextFrame.TextRange. _ InsertAfter(" ").Paste
Report Something
Add a comment below and we’ll look into it with a view to adding it to the list above.
I have a macro that pulls charts from different workbooks and pastes them into powerpoint. It loops through about 80 different files. The bottom line is…for each iteration, I can get different results every time with the same code, Some charts don’t paste, others do. Then I run it again, and it works fine. Its frustrating because obviously all the logic and syntax is working correctly.