Complete the formula to show the last edit time of the current sheet.
=NOW() - [1]The NOW() function returns the current date and time. Subtracting 0 keeps it unchanged, which can be used to refresh the timestamp.
Complete the formula to get the version number of the current Google Sheet.
=VERSION() [1] 1
The VERSION() function returns the version number. Subtracting 1 adjusts the version count as needed.
Fix the error in the formula to show the last editor's email address.
=GETLASTEDITEDBY([1])The GETLASTEDITEDBY() function requires the version number as a parameter, which is a number like 1.
Fill both blanks to create a formula that shows the timestamp of the last edit and the editor's email.
=CONCATENATE(TEXT(NOW() - [1], "yyyy-mm-dd hh:mm"), " by ", [2])
Subtracting 0 keeps the current time. GETLASTEDITEDBY(1) returns the last editor's email.
Fill all three blanks to create a formula that lists editors for the last three versions.
=ARRAYFORMULA([1](1, 2, 3), [2](1, 2, 3), [3](1, 2, 3))
The GETLASTEDITEDBY function called with versions 1, 2, and 3 returns the editors for those versions.