ce
ce copied to clipboard
update source in a specific cell
How to update the options in a drop-down list in a specific cell? Possui algo como:
const cell = sheet.getCell(row, column);
const option = { value: "Opção 4", label: "Opção 4" };
cell.setOptions([...cell.getOptions(), option]);
Hi, did you find a solution?