You can try this with the url in A
Sub test()
For Each myCell In Columns("A").Cells.SpecialCells(xlCellTypeConstants)
ActiveSheet.Hyperlinks.Add Anchor:=myCell, _
Address:=myCell.Value, TextToDisplay:=myCell.Value
Next
End Sub
If they start with ww you can use this
Address:="http://" & myCell.Value, TextToDisplay:=myCell.Value

Signature
Regards Ron de Bruin
http://www.rondebruin.nl
> Web Page Hyperlinks/How do you make a list URL's active?
>
[quoted text clipped - 5 lines]
> pages have 15,000 links). Is there some sort of switch to make all of
> my inactive URL's . . . active links at one time?
David McRitchie - 19 Jun 2005 23:19 GMT
Possibly they are not links because they have spaces or a
non breaking space character ( :), or CHAR(160).
You might try the TRIMALL Macro if Ron's solution doesn't
work, or include the substitutions and TRIM within his macro.
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm
> You can try this with the url in A
>
[quoted text clipped - 17 lines]
> > pages have 15,000 links). Is there some sort of switch to make all of
> > my inactive URL's . . . active links at one time?