I need a VB code that can detect any word with http,.com,http,links in excel sheet?
Thanks in Advance
Code sample from comments
Sub ListLinks() 
  Dim aLinks As Variant aLinks = ActiveWorkbook.LinkSources(xlExcelLinks) 
  If Not IsEmpty(aLinks) Then 
    Sheets.Add 
    For i = 1 To UBound(aLinks) 
      Cells(i, 1).Value = aLinks(i) 
    Next i 
  End If 
End Sub
 
     
    