How to convert normal/inactive URL text into active ones

  • Thread starter Thread starter Guest
  • Start date Start date
I'd just use another column with a formula like:

=hyperlink(a1)

and drag down (maybe hide that original column)
 
A variation on Dave's suggestion
Since column A has the page url there is no need to repeat it in Column B
so I would suggest.
A1: http://www.site1.com
B1: =hyperlink(A1,"[x]")

On the other hand if you want to convert column A to hyperlinks, you could use
a macro to convert to object hyperlinks, or HYPERLINK Worksheet Formulas. I'd go with
the later, but you can the two macros as MakeHyperlinks and MakeHyperlinkFormulas in
Build Table of Contents, similar listings, working with Hyperlinks
http://www.mvps.org/dmcritchie/excel/buildtoc.htm#MakeHyperlinks
http://www.mvps.org/dmcritchie/excel/buildtoc.htm#MakeHyperlinkFormulas
 
Back
Top