Paste from Excel to specific row and column in Powerpoint table

gpb237

New Member
Joined
Oct 27, 2015
Messages
25
The idea is to select a specific row and column in a table within PowerPoint and paste values from excel or from the clipboard.
I cannot get the macro to paste what I have already copied from the clipboard into the selected cells in the table.
I cannot get the macro to link to excel when I'm in a Powerpoint table. Seems like VBA is averse to ppt tables. The macro works fine up until I try to paste. Any thoughts?
Here is part of what I've written.

Sub Macro1 ()
Dim PowerpointApplication As Object, PowerpointPresentation As Object, PowerpointSlide As Object
Dim PowerpointTextbox As Object

ThisWorkbook.Sheets("Data for Powerpoint").Range("A4").Copy
PowerpointPresentation.Slides(1).Select
PowerpointSlide.Shapes("Table1").Table.Rows(2).Cells.Item(1).Select

Paste from clipboard or create link to excel???

End Sub
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
 
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,839
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top