Open a specific PDF file

This tutorial shows how to open a specific PDF file

METHOD 1. Open a specific PDF file using VBA

VBA

Sub Open_PDF_document()
ActiveWorkbook.FollowHyperlink "C:\Excel\Exceldome Tutorials.pdf"

End Sub

NOTES
Note 1: This VBA code will open a PDF file (.pdf) called "Exceldome Tutorial" in the C:\Excel folder.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to open a specific Word document using VBA
How to create and save a new workbook using VBA