Posted 5 April 2022, 5:30 pm EST
How to insert setFormatter for all the rows of the worksheet and informing a specific column?
I used it this way, but it didn’t work:
Obs: I’m used framework ReactJS.
const sheetActive = spread.getActiveSheet();
for(let i = 0; i < 32; i++){
sheetActive.setFormatter(-1, i, 'R$* #.##');
}