D
Douglas J. Steele
A Date field must be a complete date. This is because under the covers, it's
stored as an 8 byte floating point number, where the integer part represents
the date as the number of days relative to 30 Dec, 1899, and the decimal
part represents the time as a fraction of a day.
You must either use a text field, or separate fields for year and month, or
decide on a default day (say the first of the month) if you're going to use
a date field.
stored as an 8 byte floating point number, where the integer part represents
the date as the number of days relative to 30 Dec, 1899, and the decimal
part represents the time as a fraction of a day.
You must either use a text field, or separate fields for year and month, or
decide on a default day (say the first of the month) if you're going to use
a date field.