change code open all extensions files

Alaa mg

Active Member
Joined
May 29, 2021
Messages
343
Office Version
  1. 2019
hello
I need updating the code to make more dynamically by open all extensions files (pdf,docx,jpg,png,xls....) when press open any file for any cell in column (D)
should opene it .

VBA Code:
Sub OPENFILE(c As Range)
 
Dim strname As String
    Application.EnableEvents = False
    strname= ActiveWorkbook.Path & "\" & c.Value & ".xlsm"
    c(1, 4).Hyperlinks.Delete
    If c = "" Then
        c(1, 4) = ""
    Else
        If Dir(stPath) <> "" Then
            c(1, 4).Hyperlinks.Add c(1, 4), stPath, , , "open file"
        Else
            c(1, 4) = "the  file  is not available
        End If
    End If
    Application.EnableEvents = True
         
End Sub
thanks
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
What happen, if you change

This
c.Value & ".xlsm"

To
c.Value & ".*"
 
Upvote 0

Forum statistics

Threads
1,214,921
Messages
6,122,280
Members
449,075
Latest member
staticfluids

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