Power Point VB not installed converter error, when exporting a PowerPoint Slide

Lilian Hatton 20 Reputation points
2023-06-23T07:39:34.6333333+00:00

Good morning,

I am currently trying to automatically export slides from my powerpoint. (I automatically retrieve the data from Excel and change the text boxes accordingly, and it works perfectly well 😁).

But when I try to export the video with the command that follows, I get the following error.

Line:

Set PowerPointSlide = ActivePresentation.Slides(1)
#doing stuff
PowerPointSlide.Export "D:\test.mp4", "MP4"

I have this error:
User's image

Thanks for the help!!!

Microsoft 365 and Office | Development | Other
Microsoft 365 and Office | PowerPoint | For business | Windows
0 comments No comments
{count} votes

Accepted answer
  1. Viorel 122.6K Reputation points
    2023-06-23T08:02:31.07+00:00

    Try this:

    ActivePresentation.CreateVideo FileName:="D:\test.mp4", DefaultSlideDuration:=5
    
    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.