function main() {
var kw = AdWordsApp.keywords.withCondition("AdGroupStatus = ENABLED").get();
while(kw.hasNext()){
var activeKw = kw.next();
activeKw.applyLabel('LabelName');
}
}var kw = AdWordsApp.keywords.withCondition("AdGroupStatus = ENABLED").withCondition("LabelNames CONTAINS_NONE ['LabelName']").get();activeKw.applyLabel('Bid Increase:031016')
reorder labels alphabetically ("Volume:Low Volume;Bid Increase:031016" becomes "Bid Increase:031016;Volume:Low Volume") - the reason for this is so that when we Data>Text to Columns in Excel, the columns line up for each labelwithCondition("LastBidChange > Last_7_DAYS")
Please let me know if you have any other ideas for a better way to accomplish this.