0
Within the area of excel developer, run the VBA code by swapping the values for their variables, this can help solve your problem:
Sub test()
With Worksheets("Sua planilha")
.Hyperlinks.Add Anchor:=.Range("Sua celula"), _
Address:="Caminho a ser direcionado", _
ScreenTip:="Mensagem que ira aparecer ao passar o mouse", _
TextToDisplay:="Mensagem que ira aparecer na celula"
End With
End Sub