Hi, I’m creating this flow to remove similar and duplicate words from a Google Sheets spreadsheet.
My Problem: I want to delete 10 lines at a time, but the google sheets “delete” node does not delete 10, but several lines, it does not comply.
How the flow works: I take the words, pass them to the functions node, remove the duplicates, update the “new” column and remove the keywords that were used.
your Update Node will be executed sooner than the deleted node and thus you will delete totally wrong rows.
You should delete the rows in the reverse order because after you delete one row, the order of the next rows will change
You can update the Code in a way that it will output start-end rows for each set of rows to delete to. In reverse order E.g. to delete rows 2-5, 7-9, 11-14 you should provide them as: 11-14, 7-9, 2-5