Trying to add Validation to cells.
setTimeout(() => {
spreadsheetObj.addDataValidation({ type: 'Decimal', operator: 'Between', value1: '0.0',value2:'1000000.00', ignoreBlank: false }, 'E4:E7');
spreadsheetObj.numberFormat('_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@@_)', 'E4:E7');
}, 1000)
However, when pasting values to the cells this is not honored.