Last active
August 9, 2018 15:37
-
-
Save ScarletPonytail/3d32a38ac4be9b52100525ccc1ccda3b to your computer and use it in GitHub Desktop.
Google Sheets - Last edited date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onEdit(e) { | |
if (!e.value) return; | |
e.source.getActiveSheet() | |
.getRange('K1') | |
.setValue(new Date()); | |
} | |
Date format: dd/MM/yyyy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment