Excel to PowerPoint

psrs0810

Well-known Member
Joined
Apr 14, 2009
Messages
1,109
I have information linked from an Excel doc to a PowerPoint. How do I keep the information from expanding beyond the PowerPoint slide when ever I update the links?

Thanks!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
  • How many linked objects do you have?
  • Would you like the method below triggered by a Power Point event?


Code:
' PowerPoint module
Sub Linx()
Dim sh As Shape, nw&, nh&, pr As Presentation
Set pr = ActivePresentation
Set sh = pr.Slides(2).Shapes("Object 1")
sh.LockAspectRatio = msoTrue
nw = pr.PageSetup.SlideWidth * 0.95
nh = pr.PageSetup.SlideHeight * 0.9
If sh.Width > nw Then sh.Width = nw - 50
If sh.Height > nh Then sh.Height = nh - 50
sh.Top = 30
sh.Left = 40
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,687
Members
449,117
Latest member
Aaagu

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