【发布时间】:2022-09-29 05:27:57
【问题描述】:
我开发了一个excel自定义函数。我在自定义函数中添加了 helpurl。当我单击该功能时,它会在 Web 浏览器中打开 URL。我想在 excel 任务窗格中打开该 URL。我遇到了问题。这是我的功能。如何仅在任务窗格或 Microsoft 的帮助部分中打开该 URL?
/**
* Multiply By 10.
* @customfunction
* @helpurl https://localhost:3000/taskpane.html
* @param count First number.
* @returns {number} The multiply by ten.
*/
async function count(count) {
return count * 10;
}
标签: office-js office-addins excel-addins custom-functions-excel excel-web-addins