I want to know if there is any method exists to update a range of cells at once with different value for each cell.
Something like below shared code.
I'm using the latest version of syncfusion
const cellsToUpdate = [
{ cellAddress: 'A2', value: '1' },
{ cellAddress: 'B2', value: '2' },
{ cellAddress: 'C2', value: '3' },
];
const spreadsheet = this.getSpreadsheetRef();
spreadsheet.updateCells(cellsToUpdate);