Code for this video is posted below. [code] // Word Based Email Alert System // Kurt Kaiser, 2017 // Declarations var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet = ss.getSheets()[0]; var lastRow = sheet.getLastRow(); var lastColumn = sheet.getLastColumn(); // Go through recent submission, check for alert word function checkSubmission() { for (var i = 1; i < […]
You are browsing archives for
Tag: Code
Flickr API Project – The Flickr Quest of Cuteness
Slowly I’ll start getting my personal projects up. This is one of my really early ones, I’d only been coding for about six months when I attempted this. I’d just completed the JavaScript and JQuery courses in codecademny before attempting this, a Flickr API project. Learning to mess with different APIs was hugely frustrating for […]
7.2: Report Heading – Header, Implementation & Client Files
This programming challenge, 2 Report Heading, asks us to create a program that outputs the heading for a company report. We need to create a header, implementation and client file. If you’re not familiar with these three different files, check out my blog about programming challenge 7-1 Date. First, I created the header file, this is […]