Veja o que a ajuda do Excel diz sobre os hiperlinks:
Use another cell on the worksheet for the link target To quickly update all formulas in a worksheet that use a HYPERLINK function with the same arguments, you can place the link target in another cell on the same or another worksheet, and then use an absolute reference to that cell as the link_location in the HYPERLINK formulas. Changes that you make to the link target are immediately reflected in the HYPERLINK formulas.
=HYPERLINK($Z$1) In cell Z1, you then enter the path to the link target.
Assim, você pode criar um link na célula 1 da planilha 1, referindo-se ao link que está na célula 1, folha 2
Ou tente esta solução que eles mencionaram no EE:
Paste the code below into a module (ALT + F11)
Function GetAddress(HyperlinkCell As Range) GetAddress = Replace _ (HyperlinkCell.Hyperlinks(1).Address,"mailto:", "") End Function
from your worksheet to extract the hyperlink address
=getaddress(a1)