Dec 14, 2020 04:35 PM
Is it possible?
I need the timestamp feature that I can record the current time just with one or two click(s)
but still can be modified manullay.
I use ‘date’ field for this purpose but it displays date that I dont’t need.
Duration field shows only time but it does not support one-click current time insertion.
The only work-around I found is
Column A: date field: 2020/12/15 17:56
Column B: formula filed: DATETIME_FORMAT(‘Column A’, ‘hh:mm’)
There are two problems.
Thanks.
Dec 15, 2020 01:50 AM
You are correct about all of your options.
You can use the SET_TIMEZONE function in your formula field, like this:
DATETIME_FORMAT(
SET_TIMEZONE({Column A},'America/Los_Angeles'),
'hh:mm')
For an even deeper dive into time zones, you can check out my sample base & training video here:
Dec 16, 2020 08:40 PM
I appreciate your comment. It needs to create one more field. One for the timestamp itself which shows date and time, and another formula field to show time only…