I am trying to extract the hyperlink address of cell I2 in Excel using VBScript of PAD (please see the attached picture). This is the VBA code.
Function GetLinkAddress() As String GetLinkAddress = ActiveSheet.Range("I2").Hyperlinks(1).Address
End Function
And the result is '1' as shown in the attached picture. If any expert can tell me why hyperlink extraction fails and how to extract it, I would appreciate it.