Skip to content

Instantly share code, notes, and snippets.

@vlucas
Created April 9, 2021 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlucas/21f6300f3d059e44605af4ed9ee92575 to your computer and use it in GitHub Desktop.
Save vlucas/21f6300f3d059e44605af4ed9ee92575 to your computer and use it in GitHub Desktop.
SheetQuery-DeleteRows
// Delete specific matching rows
sheetQuery()
.from('Transactions')
.where(row => row.Category === 'DELETEME')
.deleteRows();
@vlucas
Copy link
Author

vlucas commented Apr 9, 2021

SheetQuery is a Google Apps Script Library.
Script ID: 1pbpOJxDDHVeVr6WQmR5TZKSqTsW4qwdIlcVKIM6UKYvswkivwHpPnHaO

Docs page (autogenerated): https://script.google.com/macros/library/d/1pbpOJxDDHVeVr6WQmR5TZKSqTsW4qwdIlcVKIM6UKYvswkivwHpPnHaO/3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment