Is there a way to embed a .xlsx object in a ppt from matlab script?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am using mlreportgen.ppt to create a simulation results report in Powerpoint. I wrote tabular results to an Excel .xlsx file and later added them into the .ppt using the Table commands. This works fine, except the tabular results are quite large, and I would like to embed the .xlsx as an object. From the Matlab Help, I found a way to import .xlsx object into a Word Document (using mlreportgen.dom, and EmbeddedObject), but I cannot find a way to import it into a PowerPoint Presentation. There is no EmbeddedObject in the mlreportgen.ppt. Can this be done?
0 comentarios
Respuestas (1)
Ishaan Mehta
el 8 de Jul. de 2024
Editada: Ishaan Mehta
el 13 de Feb. de 2025
Hi Aimee,
Since you are unable to add the Excel sheet in your presentation using "mlreportgen.ppt", doing the same using ActiveX controls can help as a workaround.
You can open an existing PowerPoint presentation through MATLAB using the "actxserver" function as illustrated below:
% Define the path to your PowerPoint file and Excel file
pptFilePath = 'presentation.pptx';
excelFilePath = 'excelSheet.xlsx';
% Open PowerPoint application
pptApp = actxserver('PowerPoint.Application');
pptApp.Visible = true;
% Open the PowerPoint presentation
presentation = pptApp.Presentations.Open(fullfile(pwd, pptFilePath));
Then, you can use PowerPoint's ActiveX commands to access the target slide and the "slide.Shapes.AddOLEObject" method to embed the Excel sheet as an OLE object in the slide.
Refer to the below documentation for more information:
Hope this helps!
0 comentarios
Ver también
Categorías
Más información sobre Create Complete PowerPoint Presentations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!