I have a column in excel, wherein I have all the website url values. My question is I want to turn the url values to active links. There are about 200 entries in that column
If adding an extra column with the hyperlinks is not an option,
the alternative is to use an external editor to enclose your hyperlink into =hyperlink("
and ")
, in order to obtain =hyperlink("originalCellContent")
If you have Notepad++, this is a recipe you can use to perform this operation semi-automatically:
=hyperlink("
. This adds =hyperlink("
at the beginning of each entry.$
(end of line) with "\)
. This adds a closed quote and a closed parenthesis (which needs to be escaped with \
when regular expressions are activated) at the end of each line.