If you want to insert a hyperlink to all cells of a specific column (in the example, to the second column), you create a loop that will "run" through the rows of the table, and then point to the second cell in each row:
In case the cells are scattered around the table, create an array to store the cell addresses. Each address consists of a row and column number separated by a comma and must be separated by a space:
The Split function will create elements containing the address of each listed cell. The second Split function will return the row number and column number of each cell.
Artik
Bookmarks