Sub ConvertToHyperlink() Dim rng As Range Set rng = Range("T1:T" & Cells _ (Rows.Count, 1).End(xlUp).Row) 'Set rng = ActiveSheet.UsedRange For Each cell In rng cell.Select If cell.Value <> "" Then If Left(cell.Value, 7) = "http://" Then URL = cell.Value Else URL = "http://" + cell.Value End If ActiveSheet.Hyperlinks.Add Anchor:=cell, _ Address:=URL, TextToDisplay:=cell.Value End If here: Next End Sub