Generate a Full Timestamp
Resulting format looks like: 2015-11-23 16:36:14
.
TIMESTAMP();
Note that since calculation fields are constantly evaluated, this timestamp will always be overwritten with the current time. If you want to add the initial timestamp and prevent it from changing, you can wrap this in a ONCE
function like so:
ONCE(TIMESTAMP());
Updated about 1 year ago