You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect to be able to create two functions that have different IDs ignore case.
Actual behavior:
Steps to Reproduce:
/**
* Calculates the volume of a sphere.
* @customfunction SPHERE_VOL
* @param {number} radius
* @returns The volume of the sphere.
*/
function sphereVolume(radius) {
return (Math.pow(radius, 3) * 4 * Math.PI) / 3;
}
/**
* Calculates the volume of a sphere.
* @customfunction SPHERE.VOL
* @param {number} radius
* @returns The volume of the sphere.
*/
function sphereVolume2(radius) {
return (Math.pow(radius, 3) * 4 * Math.PI) / 3;
}
Failure Logs:
Error:
{
"stack": "RichApi.Error: The request is aborted.\n at new n (https://appsforoffice.microsoft.com/lib/beta/hosted/excel-win32-16.01.js:26:258943)\n at o.processRequestExecutorResponseMessage (https://appsforoffice.microsoft.com/lib/beta/hosted/excel-win32-16.01.js:26:323277)\n at https://appsforoffice.microsoft.com/lib/beta/hosted/excel-win32-16.01.js:26:321339",
"message": "The request is aborted.",
"name": "RichApi.Error",
"code": "RequestAborted",
"traceMessages": [],
"innerError": null,
"debugInfo": {
"code": "RequestAborted",
"message": "The request is aborted.",
"errorLocation": "CustomFunctionManager.register",
"statement": "v.register(...);",
"surroundingStatements": [
"var workbook = context.workbook;",
"var v = Microsoft.ExcelServices.CustomFunctionManager.newObject();",
"// >>>>>",
"v.register(...);",
"// <<<<<"
],
"fullStatements": [
"Please enable config.extendedErrorLogging to see full statements."
]
},
"httpStatusCode": 500
}
Screenshot:
This is what it looks like after that error.
It says they have been registered correctly, but clearly have not.
The text was updated successfully, but these errors were encountered:
Bug Report
Expected behavior:
I expect to be able to create two functions that have different IDs ignore case.
Actual behavior:
Steps to Reproduce:
Failure Logs:
Screenshot:
This is what it looks like after that error.
It says they have been registered correctly, but clearly have not.
The text was updated successfully, but these errors were encountered: