Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Powerpoint found an error that it can't correct. ...

3,300 views
Skip to first unread message

Barb Reinhardt

unread,
May 6, 2009, 4:10:04 PM5/6/09
to
We're getting the following error when saving a Macro Enabled PowerPoint
presentation in PowerPoint 2007.

Powerpoint found an error that it can't correct. You should save
presentations, quit and then restart powerpoint

FWIW, this system has both Excel 2003 and Excel 2007 installed, and I'm not
as yet sure what versions other than PowerPoint 2007 are installed. Can
someone shed some light on the cause of this error message and what needs to
be done to eliminate it?

Thank,
Barb Reinhardt

Lucy Thomson

unread,
May 6, 2009, 7:38:53 PM5/6/09
to
Hi Barb

See if any thing here helps:
PowerPoint found an error that it can't correct
http://www.pptfaq.com/FAQ00220.htm

Lucy

--
Lucy Thomson
PowerPoint MVP
MOS Master Instructor
www.aneasiertomorrow.com.au

"Barb Reinhardt" <BarbRe...@discussions.microsoft.com> wrote in message
news:726B81A8-4A78-4368...@microsoft.com...

David Marcovitz

unread,
May 6, 2009, 7:39:51 PM5/6/09
to
I have no idea what is going wrong. Have you tried:

(1) Saving it as a regular PowerPoint file (not macro-enabled), then
opening it and saving it as macro-enabled.

(2) Saving it as a 97-2003 file.

(3) Round-tripping to HTML

--David

--
David Marcovitz
Microsoft PowerPoint MVP
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/

In article <726B81A8-4A78-4368...@microsoft.com>,

jeon...@gmail.com

unread,
May 3, 2016, 5:38:08 AM5/3/16
to
1) save as PPT( the older version of PPT 2003) but the file size will become a lot larger.

2) Usually it's memory overflow issue.
I think your presentation slides have too many invisible objects for PowerPoint to handle. You can't correct it/them since they are invisible. Unless you remove slides, the problem will go on.

Go to menu [File -Info - Check for Issues - Inspect Document ]
Now, find and remove invisible data

https://support.office.com/en-us/article/Remove-hidden-data-and-personal-information-by-inspecting-presentations-b00bf28d-98ca-4e6c-80ad-8f3417f16b58

To prevent this issue from happening, do not copy/paste slides or pictures from unknown sources. If you write or use VBA script, BE SURE to remove invisible objects created during the slideshow.

Below is the scrpt that can be used to remove all the invisible shape objects in the slides.

Sub remove_invisible()
Dim i, j as Integer
Dim myShape as Shape
Dim myCount as Integer

For i = 1 To ActivePresentation.Slides.Count
' delete shapes in reversed order. Otherwise, you may miss some consecutive innvisible shapes. Do not use 'for each' syntax when deleting an array.
For j =ActivePresentation.Slides(i).Shapes.Count to 1 Step -1
set myShape = ActivePresentation.Slides(i).Shapes(j)
If myShape.Visible = msoFalse Then
myShape.Delete ' erase shapes
myCount = myCount + 1
End If

Next j
Next i

MsgBox myCount & " shapes were deleted."
End Sub

s.te...@flash-global.net

unread,
Nov 15, 2018, 4:32:13 AM11/15/18
to
right click on the file that you have downloaded and select unblock. the files won`t display the error anymore

0 new messages