Mindy
David McRitchie has written a macro to change addresses to hyperlinks.
Sub MakeHyperlinks()
'David McRitchie
Dim cell As Range
For Each cell In Intersect(Selection, _
Selection.SpecialCells(xlConstants, xlTextValues))
With Worksheets(1)
.Hyperlinks.Add Anchor:=cell, _
Address:=cell.Value, _
ScreenTip:=cell.Value, _
TextToDisplay:=cell.Value
End With
Next cell
End Sub
Hit ALT + F11 to open the VB Editor.
CTRL + r to open Project Explorer
Select your workbook/project by name and right-click and Insert>Module
Copy/paste the code into that module.
Save the file then ALT + Q to go back to Excel.
You can run the macro by Tools>Macro>Macros>Run
Select the range of cells before running the macro.
Gord Dibben MS Excel MVP