Posted 9 May 2020, 3:29 am EST
hi,
I would like to delete selected multi rows.
I loop to deleteRows(row,rowCount),
selections.forEach((selection) => {
const { row, rowCount } = selection
sheet.deleteRows(row, rowCount)
})
but I didn’t get the results I wanted.
1,2,3,4,5,6
I want delete row 1,3,it deleted row1,4.
I kown sheet draw by steps,but …I have no idea~
Thanks
