Nov 16, 2021 09:32 AM
Hi people,
Dose anyone know how to make the correct date (I need year/mm/dd and time) in my table when my form get submitted?
I tried the formula
DATETIME_FORMAT(NOW(),'YYYY-MM-DD')
also I tried
CREATED_TIME()
but the date and time shows up incorrect.
Solved! Go to Solution.
Nov 16, 2021 04:04 PM
Turn off “Use GMT for all collaborators”. or use Date Time Format + Set Timezone to force the created time to whatever timezone you are in.
This will show literally always “now”, plus or minus 15 or so minutes inbetween when the formula refreshes.
Nov 16, 2021 09:35 AM
Create a new field of “Created Time” type.
Nov 16, 2021 03:30 PM
Thanks for help! @ScottWorld
I tried create a new field of “Created Time” type, and the automatiion date/time still not showing right.
Like this pic, the right date should be 2021-11-17 but it shows 2021-11-16
Nov 16, 2021 04:04 PM
Turn off “Use GMT for all collaborators”. or use Date Time Format + Set Timezone to force the created time to whatever timezone you are in.
This will show literally always “now”, plus or minus 15 or so minutes inbetween when the formula refreshes.
Nov 16, 2021 04:40 PM
Thank you so much @Kamille_Parks
I get the right time! finally! :sparkler:
For those who might having the same problem like me, here is the solution I use:
DATETIME_FORMAT(SET_TIMEZONE({Created}, 'Asia/Taipei'),'MM-DD-YYYY hh:mm')
Also some useful sources link down below:
Supported timezones for SET_TIMEZONE
Use a formula like this to set the time zone answerd by @ScottWorld