If it is possible what would be the best approach (extracting just the date somehow)?
If you mean to display it in the browser, you just reference the stored ‘date’ field and format it however you want to (e.g. Sunday 24th January, or 24/01/2021 etc) You can also choose which timezone to display it in…
If you mean you want to display records from a certain date (i.e. those created today) then just filter the records so that the ‘created date’ field’s value is greater than the current date/time with the seconds, minutes, and hours changed to 0 (in other words, 00:00 - midnight today).
Presently the app’s ‘Current date/time is changing hours, minutes and seconds to 0’ to reference a common time of Today at 12am. However, there is a single user in another timezone that is recording into the database as 11pm (not sure if it’s because of the timezone or another reason yet), and I am attempting to possibly correct for that by eliminating the time. Unless there is another approach to take?
How are you setting the ‘date’ field in the first place? Assuming it’s done in a browser workflow it will be set in the user’s timezone, so if you’re viewing it in a different timezone you’ll see a different time if it’s formatted in a readable way like 10:55am (although the actual recorded moment is the same). If you change the input time to midnight (or anything else), again that will be midnight in the user’s timezone, so when viewing that date in another timezone it will appear different if you’re formatting it as a readable date.
Check the Bubble reference for a more detailed explanation of how the ‘date’ type works in Bubble:
‘Date’ Type Reference | Bubble
1 Like