R
R
RobShneider2020-02-11 17:34:25
excel
RobShneider, 2020-02-11 17:34:25

How to direct hyperlinks in PowerPoint to specific Excel tabs?

How to direct hyperlinks in PowerPoint to specific Excel tabs?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
B
BasiC2k, 2020-02-11
@BasiC2k

You can create a macro-enabled presentation. Insert the following code into the module:

Public Sub OpenExcelBook()
Dim xlApp As Object, xlBook As Object

Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
Set xlBook = xlApp.Workbooks.Open("C:\1\Book1.xls") ' Открытие книги Excel

xlBook.Sheets(2).Activate                      ' Активация второго листа книги
xlBook.Sheets(2).Range("A10").Select    ' Переход к ячейке A10

Set xlBook = Nothing: Set xlApp = Nothing
End Sub

Select the desired inscription on the presentation, then: Insert - Action - On mouse click - Action. And choose a macro to execute "OpenExcelBook".

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question