javascript - How to programatically add a hyperlink to a cell in a worksheet using office-js? - Stack Overflow

I'm working on an Excel add-in using the JavaScript APIs to build add-ins in Excel 2016.The proble

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"), ""
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

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."
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

Share Improve this question asked Jun 30, 2016 at 14:40 Eric HaasEric Haas 1211 silver badge7 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Adding hyperlinks is available in the beta for OfficeJS as of now. You can load the beta version with...

<script type="text/javascript" src="https://appsforoffice.microsoft./lib/beta/hosted/Office.js"></script>

...and get/set hyperlinks with

Set a hyperlink in cell A1:

Excel.run((context) => {
    const sheet = context.workbook.worksheets.getActiveWorksheet();
    const range = sheet.getRange('A1');
    range.hyperlink = {
        address: `mailto:[email protected]`,
        documentReference: null,
        screenTip: null,
        textToDisplay: 'Send me a Mail!',
    };
    return context.sync();
 })

Get hyperlink from cell A1:

Excel.run((context) => {
    const sheet = context.workbook.worksheets.getActiveWorksheet();
    const range = sheet.getRange('A1').load('values, hyperlink');
    return context.sync().then(() => console.log(range.hyperlink));
})

API Reference

  • OfficeJS Docs for RangeHyperlink

There are two types of hyperlinks in Excel, one that you do in VBA through Hyperlinks.add, and another that you do via a formula. The latter is easily supported by the Excel JavaScript object model.

Excel.run(function (ctx) {
    var firstCellInSelection = ctx.workbook.getSelectedRange().getCell(0, 0);
    firstCellInSelection.formulas = [['=HYPERLINK("http://www.bing.")']];
    return ctx.sync();
}).catch(function (error) {
    console.log(error);
});

~ Michael Zlatkovsky, Developer on Office Extensibility Team, MSFT

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743612156a4478433.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信