Dates with NO year

Is it possible to input and display dates with no year? Just MM/DD?

I am able to set this up in the table… but the form does not seem to have an option for this, and inputs and displays the current year by default.

Dates won’t be allowed without year in databases. This aren’t dates you will save, this is a combination of day and month. A date will be saved by the database in format YYYY-MM-DD. You could set formatted fields, which should only show the days and the month. But you will run into problems with something like 2020-02-29. This is the same you have done in the table. It isn’t a specific behavior of the form to “add” a year. It is the only possibility to save the content as a data variable.

1 Like

Thank you! The formatted field worked!