Hi, I want to print all pdfs in a particular folder, and have a somewhat workable code:
Private Sub CommandButton1_Click()
Dim folder As String
Dim PDFfilename As String
folder = "C:temp\excel" 'CHANGE AS REQUIRED
If Right(folder, 1) <> "" Then folder = folder & ""...