Print PDF documents using hyperlink from excel from a dynamic list using VBA

sgvthm95

New Member
Joined
Mar 19, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi Guys,

I currently have an excel document that has a list of hyperlinked PDFs in column C with cell C1 being a filter to determine which PDF's from that folder I want to print.

Once I have filtered column A, I need to be able to print all the PDF's that are visible under that filter.

I have noticed some code using Shell however this is quite out of my league, my Adobe reader is at the following location:
C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32.exe

I need it to also work on 32-bit and 64-bit version of excel.

Any help would be much appreciated.

Regards,

Sgvthm95
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Welcome to MrExcel forums.

Try this macro, which operates on the AutoFiltered active sheet, and loops through all the visible hyperlinks in column C starting at C2.
VBA Code:
Public Sub Print_Filtered_PDFs()

    Dim PDFcells As Range, PDFcell As Range
    
    With ActiveSheet
        If .AutoFilterMode Then
            Set PDFcells = .Range("C2", .Cells(.Rows.Count, "C").End(xlUp))        'column C hyperlinks to PDF files
        Else
            MsgBox .Name & " isn't AutoFiltered"
            Exit Sub
        End If
    End With
    
    For Each PDFcell In PDFcells.SpecialCells(xlCellTypeVisible)
        Print_File PDFcell.Hyperlinks(1).Address
    Next
    
End Sub

Private Sub Print_File(fileFullName As String)
    CreateObject("Shell.Application").Namespace(Left(fileFullName, InStrRev(fileFullName, "\"))).Items.Item(Mid(fileFullName, InStrRev(fileFullName, "\") + 1)).InvokeVerb "Print"
End Sub
The only problem is that the Acrobat/Adobe window is left open at the end. There is no way of printing the PDFs without opening the Acrobat/Adobe application, so you'll have to close it manually, or I guess Windows API code could be used to close it.
 
Upvote 0
Welcome to MrExcel forums.

Try this macro, which operates on the AutoFiltered active sheet, and loops through all the visible hyperlinks in column C starting at C2.
VBA Code:
Public Sub Print_Filtered_PDFs()

    Dim PDFcells As Range, PDFcell As Range
   
    With ActiveSheet
        If .AutoFilterMode Then
            Set PDFcells = .Range("C2", .Cells(.Rows.Count, "C").End(xlUp))        'column C hyperlinks to PDF files
        Else
            MsgBox .Name & " isn't AutoFiltered"
            Exit Sub
        End If
    End With
   
    For Each PDFcell In PDFcells.SpecialCells(xlCellTypeVisible)
        Print_File PDFcell.Hyperlinks(1).Address
    Next
   
End Sub

Private Sub Print_File(fileFullName As String)
    CreateObject("Shell.Application").Namespace(Left(fileFullName, InStrRev(fileFullName, "\"))).Items.Item(Mid(fileFullName, InStrRev(fileFullName, "\") + 1)).InvokeVerb "Print"
End Sub
The only problem is that the Acrobat/Adobe window is left open at the end. There is no way of printing the PDFs without opening the Acrobat/Adobe application, so you'll have to close it manually, or I guess Windows API code could be used to close it.
Dear Mr John
Thank for your posts
with this code i had an issue as picture below, could you help me to fix?
Thank you so much!!
 

Attachments

  • capture_optimized.png
    capture_optimized.png
    183.1 KB · Views: 158
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top