Notes and Scripts Baby
This commit is contained in:
@ -64,7 +64,7 @@ function propstoSheet(uuid, row, email) {
|
||||
|
||||
// Write the Data to each row and column
|
||||
sheet.getRange(row, 17).setValue(role);
|
||||
sheet.getRange(row, 18).setValue(user_id).clearFormat();
|
||||
sheet.getRange(row, 18).setValue(user_id);
|
||||
sheet.getRange(row, 19).setValue(paid);
|
||||
Logger.log(row + "," + email);
|
||||
}
|
||||
@ -73,5 +73,6 @@ function writeHeadings() {
|
||||
// Write the new Column Headings
|
||||
sheet.getRange(1, 17).setValue("Role");
|
||||
sheet.getRange(1, 18).setValue("ID Number");
|
||||
sheet.getRange(1, 18).clearFormat();
|
||||
sheet.getRange(1, 19).setValue("Paid?");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user