Automatic hyperlinks between cell with pdf file name and the pdf file

SimoD

New Member
Joined
Jun 7, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi I have a drawing log sheet with various pdf files named in column M and i want to automatically hyperlink the pdf files to the text in the cells. Can this be done?

I've created the button and attempted a few things to get this to work but I'm not getting anywhere with it

I want to do sim with nc files
1717793579414.png
1717793902942.png


Thanks
Simon
 

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
Assign this macro to your button.

VBA Code:
Public Sub Create_Hyperlinks()
    Dim cell As Range
    With ActiveSheet
        For Each cell In .Range("M2", .Cells(.Rows.Count, "M").End(xlUp))
            cell.Parent.Hyperlinks.Add Anchor:=cell, Address:="C:\Drg_Log_Files\DRG_FILES\" & cell.Value
        Next
    End With
End Sub
 
Upvote 0
Assign this macro to your button.

VBA Code:
Public Sub Create_Hyperlinks()
    Dim cell As Range
    With ActiveSheet
        For Each cell In .Range("M2", .Cells(.Rows.Count, "M").End(xlUp))
            cell.Parent.Hyperlinks.Add Anchor:=cell, Address:="C:\Drg_Log_Files\DRG_FILES\" & cell.Value
        Next
    End With
End Sub
Thanks for this it worked perfectly, really appreciate your help
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,875
Members
452,363
Latest member
merico17

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