Is cell edit history accessible programmatically in Google Apps Script?
问题 In have an installed trigger for onEdit and an installed trigger for onChange. I log the contents of the event object that is passed in as below function installedOnChange(e) { var me = CalleeName(arguments); Logger.log("%s: %s", me, JSON.stringify(e)); (CalleeName is defined as function CalleeName(a) { return a.callee.toString().split(" ")[1].split("(")[0].trim(); } ). The stringification of the event contains .oldvalue and .value except in the situation where a cell is ^C copied and then ^V