Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created March 22, 2019 00:20
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/eee1753fe310463505d11769fa009c9a to your computer and use it in GitHub Desktop.
Save iaindooley/eee1753fe310463505d11769fa009c9a to your computer and use it in GitHub Desktop.
Populate excel from Trello
function populateExcel(notification)
{
var item = new Notification(notification).completedChecklistItem();
SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Tracker").appendRow(["Completed",item.name]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment