• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Hyperlink Function to a specific page in a pdf

sweetness

New Member
Hi All,

I used it once apon a time and now I cant remember how.
I am trying to use the Hyperlink function in excel to open a pdf file on a specific page. ie something like this:
Code:
=hyperlink("[link]#11","friendly name")
or
=hyperlink("[link]pg11","friendly name")
but its not working. Any ideas?

Thanks
 
Try:
=HYPERLINK("C:\MyPDFile.pdf#page=5","Friendly name")

if you want the file name and directory from a named formula it will be
=HYPERLINK([Link]+"#page=5","Friendly name")
 
Back
Top