Answer the question
In order to leave comments, you need to log in
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
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question