Try this macro after selecting all 500+ cells.
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
Gord Dibben MS Excel MVP
>I have designed a worksheet wherein the cells contains the following
>information
[quoted text clipped - 11 lines]
>Remember i wish to colour only the link not the cell which has other
>info too