How do I connect PowerPoint and Excel such that each slide in the PowerPoint slideshow shows the next Excel cell in the cell in column A of Excel?
A:
Well, it's a bit of programming, but basically you'll want to:
- Set a reference to Excel in PowerPoint VBE.
- Figure out where in PowerPoint you want the Excel cell text to appear, like a Title placeholder.
- Create a
SlideChange
event in a class and with with the slide change, read the index of the slide and map it to the next cell from an array of cells. - Place that mapped index text in your slide shape when the slide changes.
- Create a sub that initializes that
fires the event monitoring - either
from a Ribbon button, manually from
F5 or via
Auto_Open
.
If you come back with code that you're having problems with, I'd be happy to consult further.
Otaku
2010-04-18 10:46:08