add hyperlink after save file as pdf

leap out

Active Member
Joined
Dec 4, 2020
Messages
271
Office Version
  1. 2016
  2. 2010
hello

I have this code save my file as pdf what I want adding hyperlink in sheet "archive" in column a every time I save as pdf then incrementing dynamically a1,a2,a3 ... and so on
VBA Code:
Sub SaveInvoiceWithNewName()
    Dim OrigFN As Variant
    Dim NewFN As Variant
    ' Remember the original path and file name
    OrigFN = ThisWorkbook.FullName
    ChDir "C:\aaa"
    NewFN = "Inv" & Range("E5").Value & ".pdf"
    ' Save a copy with the new name
    ActiveWorkbook.SaveAs Filename:="C:\aaa" & "\" & NewFN, FileFormat:=xlOpenXMLWorkbookMacroEnabled
    ' Delete the original workbook so you can save without warning
    On Error Resume Next
    Kill (OrigFN)
'    On Error GoTo 0
    ' Save again as the original file name
    ActiveWorkbook.SaveAs Filename:=OrigFN, FileFormat:=xlOpenXMLWorkbookMacroEnabled
    NextInvoice
End Sub
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying

Forum statistics

Threads
1,214,976
Messages
6,122,539
Members
449,088
Latest member
RandomExceller01

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