Public Sub SimplifyHyperlinks()
Dim h As Hyperlink
' This will maintain the hyperlinks but replace "View Details" with the hyperlink address
For Each h In ActiveSheet.Hyperlinks
h.TextToDisplay = h.Address
Next h
' This will remove the hyperlink and put the hyperlink address in the cell
For Each h In ActiveSheet.Hyperlinks
h.Parent.Value = h.Address
h.Delete
Next h
End Sub