I'm working on an Excel add-in using the JavaScript APIs to build add-ins in Excel 2016.
The problem I have is not to place the url/link in the cell - I rather want to make this url clickable (as you may know it from entering a url into a cell and hit ).
In VBA the solution was this (e.g.):
With Worksheets(1)
.Hyperlinks.Add .Range("E5"), "http://example.microsoft.com"
End With
Unfortunately, I can't find a hyperlink function in the JavaScript API. Any idea?
Thanks a lot for any help and best regards Eric