Questions tagged [powerpoint]
PowerPoint is a Windows and Macintosh presentation program produced by Microsoft.
14 questions
7
votes
3
answers
1k
views
Python script to renumber slide ids inside a pptx presentation
Intro
I have never had the patience or the free time to really read a python book from cover to cover. I just starting coding, looking up things and pasting stuff. That was ok because I was the sole ...
0
votes
0
answers
113
views
Walk a folder of files and extract creation date, countries mentioned and a summary based on their text for each
I made a script that scans a folder of 723 documents (pdf, pptx, docx) to extract the 'Name', 'Type', 'NbPages', 'Creation Date', 'Period Date', 'Countries', 'Summary', 'Indicateurs', 'Path'. I think ...
3
votes
1
answer
661
views
Excel VBA to powerpoint
I am basically looking for a way to trim below code. It works just fine.
This code takes a range from each tab of an excel spreadsheet and pastes it into a powerpoint file, then assigns a title to ...
3
votes
2
answers
288
views
Sub that calls itself when its parent Workbook is closed
and no, I'm not talking about Workbook_BeforeClose. Note that the motivation of this question is Excel specific but the technique I'd like feedback on is not.
If ...
1
vote
1
answer
126
views
Reliably setting keys in Windows Registry for a VBA addin
We have a PowerPoint VBA addin which is installed using an MSI installer written with WIX (Windows Installer XML).
For the addin to be picked up (for all users) by PowerPoint, name-value pairs need to ...
3
votes
1
answer
678
views
Batch Insert Figures Into Powerpoint Slides with VBA
I have a series of images ("1.bmp", "2.bmp", "3.bmp",... ,"30.bmp" in "F:\Images" folder) and I am trying to insert these images one by one into ...
7
votes
1
answer
408
views
Add Default Rubberduck VBA Folder Annotation to VBProject.VBComponents
Currently Rubberduck VBA files all the VBProject VBComponents in that do not have a Folder Annotation in a Folder named after the VBProject. It can be time consuming to manually organize the ...
9
votes
1
answer
288
views
VBA - new built-in enumerations and backwards compatibility
msoGraphic is an MsoShapeType enumeration that is available in Office PowerPoint 2016 and later (versions which can handle svg graphics). If you attempt to check an MsoShapeType against msoGraphic in ...
4
votes
2
answers
769
views
Extract data labels from a chart in PowerPoint to Excel
Would like to check if anyone here is able to simplify the following code.
What it does: Extract data labels value from a chart in powerpoint to excel.
...
1
vote
2
answers
197
views
Open Excel, grab information, store it locally and close Excel
I finished the first part of my code that is run from PowerPoint. The steps it takes are:
Open Excel file specified
Choose correct tab that has an existing ...
3
votes
1
answer
398
views
Find and Replace on PowerPoint Charts with Excel Sheets
This will Search through all slides and shapes until it finds a chart, if it's not a Pie chart then it will open up the ActiveWorkbook behind that Chart then it will check the sheet for words in ...
2
votes
1
answer
5k
views
3
votes
1
answer
1k
views
Creating a PowerPoint in vba by calling "slide" subroutines
I am creating a powerpoint in VBA, but there are a lot of slides in it.
I was thinking I could create a macro that calls a lot of subroutines. Within those subroutines, the actual "slide code" would ...
5
votes
1
answer
2k
views
Process PowerPoint XML
I run a tiny open source project to help create speech aids for disabled people (the GitHub is here).
One of the things that is useful is for people to design speech setups in Powerpoint, and then ...