I have developed an excel custom function. I have added the helpurl in the custom function. When I click on that function it opens the URL in the web browser. I want to open that URL in the excel task pane. I am getting problems with that. Here is my function. How can I open that URL in the task pane only or in the help section of Microsoft?
/**
* 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;
}