Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there, hope someone can help.
I'm writing a simple Macro to copy the text in a cell (the result of a formula) into a Text Box in a specific PowerPoint slide. What I have so far is shown below (I have named the text box in Powerpoint 'textbox1'). I'm struggling to find a way of pasting though! Can anyone help? Thanks, Andy UK Sub macInsertStatsFigures() 'Jump to the Exit Criteria worksheet Worksheets("Stats 11").Activate Dim strFindText As String Dim strReplaceText As String strReplaceText = Range("P7") Dim PPApp As PowerPoint.Application Dim PPPres As PowerPoint.Presentation Dim PPSlide As PowerPoint.Slide ' Reference existing instance of PowerPoint Set PPApp = GetObject(, "Powerpoint.Application") ' Reference active presentation Set PPPres = PPApp.ActivePresentation PPApp.ActiveWindow.ViewType = ppViewSlide 'Select the correct slide in the Presentation PPApp.ActivePresentation.Slides(4).Select 'Select Textbox1 in powerpoint PPApp.ActiveWindow.Selection.SlideRange.Shapes("te xtbox1").Select 'Paste the contents of strReplaceText into it End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MS Excel & Powerpoint Copy & paste | Excel Discussion (Misc queries) | |||
How do I copy and paste a powerpoint slide from excel using vba co | Excel Programming | |||
Excel to Powerpoint - copy/paste text box | Excel Programming | |||
copy table or graph and paste into powerpoint | Excel Programming | |||
Copy and Paste from Excel to powerpoint the pix is Truncated | Excel Discussion (Misc queries) |