I've got an entire column of URLs in a spreadsheet and I don't know how to make them all active links without going into each cell and activating them one-by-one. Is there a way of selecting the entire column and turning them on?
I can think of two easy approaches to this problem.
Sub AddHyperlinks() Dim rngCe As Range On Error Resume Next For Each rngCe In Selection rngCe.Parent.Hyperlinks.Add anchor:=rngCe, Address:=rngCe.Value2 Next rngCeEnd Sub
Peter
Thanks for that input.
Since the values in that column are formulas themselves
[="http://www.blahblah.com/"&[@[ColumnA]]
...I just tossed [=HYPERLINK({formula})] in there at the front.
Your input is appreciated.
- Art