open power point foils via excel button (link)

  • Thread starter Thread starter Benjamin Frasch
  • Start date Start date
B

Benjamin Frasch

Hi folks,

I have following problem :

I want to open a powerpoint presentation with a button or hyperlink from an
excel workbook and jump automatically to the correct powerpoint foil.

How can I do this? Althoug I have some generall knowledge about vba but this
is way up to difficult for me :)

Thanks,
Ben
 
Dear Benjamin

Try using the .Hyperlinks method of the worksheet object. The folowing
will create a hyperlink to a PowerPoint presentation in the activecell.
You do not need the SubAddress and if the ScreenTi is left empty it will
display the full path of the presentation:-


ActiveSheet.Hyperlinks.Add _
Anchor := ActiveCell, _
Address := "<<file path of presentation>>", _
SubAddress := "", _
ScreenTip := "", _
TextToDisplay := "<<text displayed in the cell>>"

Hope it helps

Sean
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top