Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created March 20, 2019 00:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save iaindooley/9b8ae0ff9f24c21a7f928440ebd88667 to your computer and use it in GitHub Desktop.
Save iaindooley/9b8ae0ff9f24c21a7f928440ebd88667 to your computer and use it in GitHub Desktop.
Export checklist data
function exportChecklistData()
{
var customer_sheet = SpreadsheetApp.getActiveSpreadsheet().insertSheet("Customer Data");
new Trellinator().board("My Customer Board").cards().each(function(card)
{
card.checklists().each(function(cl)
{
cl.items().each(function(item)
{
customer_sheet.appendRow([item.text()]);
});
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment