A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Thank you for the clarification. I apologize for any confusion in my previous response.
If you are using JSDoc tags to document your custom functions in Excel add-ins, and the URL is not appearing as expected in the "More help on this function" link within the Formula Builder tab, there might be a few possible reasons for this:
- Incorrect JSDoc Format: Make sure that you have followed the correct JSDoc format for the URL tag. The correct format should be something like this:
/\*\*
\* Function description.
\* @param {parameter\_type} parameter\_name - Parameter description.
\* @returns {return\_type} Return description.
\* @see {@link URL}
\*/
function functionName(parameter\_name) {
// Function implementation.
}
Ensure that you have properly used the {@link URL} tag to reference the URL you want to link to.
- Add-in Manifest: Verify that you have properly specified the custom function in the add-in manifest file (manifest.xml). Ensure that the add-in supports the specified custom function and that the manifest is correctly configured.
- Cache Refresh: Excel might cache the add-in metadata, including the function documentation. In some cases, it might take some time for the changes to be reflected in the Formula Builder tab. Try restarting Excel or clearing the cache to see if the URL appears correctly.
- Office Version: Ensure that you are using a supported version of Office/Excel that fully supports the feature. The URL link in the "More help on this function" feature might be available in specific versions of Office.
If you have followed the correct format and are still facing issues, I recommend checking Microsoft's official documentation and developer community forums for any known issues or updates regarding the use of JSDoc tags and URL linking in Excel add-ins.
If the problem persists, consider reaching out to Microsoft support or the developer community for further assistance.