Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have read through a lot of discussions on this topic but haven't had any
luck yet. I have tons of pdf files that are hundreds of pages and would like to be able to create hyperlinks to specific pages in these docs. I want to keep them as pdf files. I have created bookmarks in the pdf files but when I try to hyperlink from excel to those bookmarks, I get this error message: "Certain file formats, such as XML, do not support bookmarks so you cannot create a hyperlink to a bookmark in a file that does not support bookmarks. You can either hyperlink to the file without any bookmarks, or change the file format so you can insert bookmarks into and hyperlink to the bookmark." This confuses me because the file isn't an XML, its a pdf. Can anyone help me out? Thanks, Brian |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
AFAIK this can't be done the way you are trying but here's a UDF that does it provided you happy to open with Internet explorer. You would call this using the full path and page number =GoToPDFpage("c:\Somefile.pdf",4) Function GoToPDFpage(Fname As String, pg As Integer) Set IE = CreateObject("InternetExplorer.Application") With IE .Navigate Fname & "#page=" & pg .Visible = True End With End Function -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "bwjohnson1" wrote: I have read through a lot of discussions on this topic but haven't had any luck yet. I have tons of pdf files that are hundreds of pages and would like to be able to create hyperlinks to specific pages in these docs. I want to keep them as pdf files. I have created bookmarks in the pdf files but when I try to hyperlink from excel to those bookmarks, I get this error message: "Certain file formats, such as XML, do not support bookmarks so you cannot create a hyperlink to a bookmark in a file that does not support bookmarks. You can either hyperlink to the file without any bookmarks, or change the file format so you can insert bookmarks into and hyperlink to the bookmark." This confuses me because the file isn't an XML, its a pdf. Can anyone help me out? Thanks, Brian |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format page number in excel footer to start at a specific page # | Excel Discussion (Misc queries) | |||
Hyperlink to specific page in a PDF file | Excel Discussion (Misc queries) | |||
External hyperlink to a specific page in a workbook | Excel Worksheet Functions | |||
hyperlink to specific cell/row | Excel Discussion (Misc queries) | |||
Excel should let hyperlink of PDF jump to a specific page like IE. | Excel Discussion (Misc queries) |