3
在我的Google Spreadsheet中,我記錄了每行中單元格的最後修改。Google電子表格腳本 - 不記錄用戶電子郵件
當我從我的帳戶編輯單元格時,它會記錄我的用戶(作爲電子郵件),當有人從其他帳戶編輯時顯示空的用戶名或?
。
這裏是谷歌腳本。
function onEdit(e) {
...
ss.getRange(r.getRow(), ss.getLastColumn()).setValue(e.user.getEmail() + " " + date + " \"" + column_name + "\"");
...
}
結果,當我編輯:
*******@gmail.com 11:09 [08-11-2012] "SOME VALUE"
結果當別人編輯:
? 09:54 [08-11-2012] "SOME VALUE"
謝謝! 'getEffectiveUser'工作正常。 – BlackTea