Reputation: 197
I have an Excel file which needs to be sent to my colleagues. However, there is a column "link" which includes the text URL, the URL only can be activated when I double click this cell. How can I automatically activate these text URLs so my colleagues don't need to double click on each cell?
Thanks, Jennifer.
Upvotes: 5
Views: 22431
Reputation: 96753
With inactive links in column A, in B2 (or some other column) enter:
=HYPERLINK(A2,A2)
and copy downward.
This costs you an extra column, but it minimizes the need for "special handling". An alternative approach might be to activate all the cell in the column with a small SendKeys macro.
Upvotes: 6