Sub EditHyperlinks
Dim strHyperlink As String
Range("B2").Select
Do While Not IsNull(ActiveCell) Or ActiveCell = vbNullString
strHyperlink = Left(ActiveCell, InStr(1, ActiveCell.Value, "#") - 1)
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= _
"http://" & strHyperlink, TextToDisplay:=strHyperlink
ActiveCell.Offset(1, 0).Select
Loop
End Sub