This procedure attempts to create a hyperlink to the cell contents
for each cell in the currently selected range:
Sub CovertTxt2Hyperlink()
Dim cCell As Range
Dim strPath As String
strPath = "C:\Logs\" '<--Your file path goes here
For Each cCell In selection.Cells
On Error Resume Next
ActiveSheet.Hyperlinks.Add _
Anchor:=cCell, _
Address:=strPath & cCell.Value, _
TextToDisplay:= cCell.Value
Next cCell
End Sub
To put that code in your workbook:
• [Alt]+[F11]........to view the Visual Basic Editor (VBE)
• Right-Click on your workbook name in the VBE list
• <insert><module>
• Copy the above code and paste it into that module
To run the macro...
• Select the range of cells with the file names
• [Alt]+[F8]
...Select: CovertTxt2Hyperlink
...Click [Run]
Does that help?
Bookmarks