Note that I un-did the troublesome field as I needed to move on. But you could re-create by adding a field that implements the formula I pasted in the prior message.
This happens to me all the time. If I set a start date in format yyyy-mm-dd, and then for the end date use a formula such as startDate + days(5), the result always includes time. Luckily, upon insert, mySQL truncates the values to just the date.
Here’s an example:
If you look at the schema, I set the date for effectiveOn and format it yyyy-mm-dd, then calculate confirmedOn by subtracting 10 days. If you hit preview, you can see the result, which always includes the time in the calculated field.
I have a created date set as a SQL Datetime. If a condition is met, status = ‘Closed’ I want to add a random number of days to determine the closed date. Closed date is also a SQL Datetime. However, for closed date it displays as UTC time. What gives?
The issue appears to be caused if you specify a type of date and use the fx option to specify the formula, if you use the type formula to specify the date calculation then it returns only the date part.