Building custom solutions that extend, automate, and integrate Microsoft 365 apps.
Good Day,
ist there any update on this problem? We are still facing the same problem .
Best regdars
Felix
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Our Excel add-in code is now getting a timeout error while updating cells in sheets exceeding 3500 rows. Despite smooth operation before, this issue has surfaced suddenly. We are investigating the root cause and working towards resolving it to restore full functionality to our Excel add-in. We welcome any suggestions or insights. Thanks in advance!
Excel.run(function (context) {
var sheet = context.workbook.worksheets.getActiveWorksheet();
var rangeValues = [];
resultColumnCells.forEach((element, index) => {
rangeValues.push(sheet.getRange(element));
let data = [dataArray[index]];
rangeValues[index].values = data;
rangeValues[index].format.autofitColumns();
})
return context.sync();
}).catch(function (errorHandlerFunction) {
console.error(errorHandlerFunction.code);
console.error(errorHandlerFunction.message);
});
Building custom solutions that extend, automate, and integrate Microsoft 365 apps.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Good Day,
ist there any update on this problem? We are still facing the same problem .
Best regdars
Felix