Open Particular Excel Worksheet from Powerpoint via VBA
问题 I have a Power Point presentation that contains data pasted into it from Excel using VBA. The data in the excel file is a table that contains hyperlinks to other worksheets within the same workbook. The VBA that creates this as an example is : 'Adds hyperlink to each worksheet user can use to find from powerpoint Range("B2").Select ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _ "'Title Missing'!A1", TextToDisplay:="Missing Title Tags" This code works just fine - The