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!!!

PowerPoint
PowerPoint
A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
251 questions
Office Development
Office Development
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Development: The process of researching, productizing, and refining new or existing technologies.
3,709 questions
0 comments No comments
{count} votes

Accepted answer
  1. Viorel 114.5K 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