There's no way to use a date field unless you give it an entire date. That's
because under the covers, the date is stored as an eight-byte floating point
number where the integer portion represents the date as the number of days
relative to 30 Dec, 1899, and the decimal portion represents the time as a
fraction of a day.
You'll either have to use default month and/or day if you don't know it, or
use a text field.
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"Tom" <(E-Mail Removed)> wrote in message
news:76E52487-205A-4BCE-84D7-(E-Mail Removed)...
> The date field appears to require the day, month, and year. I'm setting
> up a
> catalogue of items where there is an "acquired date" field. Some items
> have
> day, month, year and some items have month, year and some items have year
> acquired only. Is there a way to keep it as a date field but only enter
> part
> of the known dates? If not, then I assume it has to change to a text
> field.
> If that is the case is there a "better" way to enter the dates so that if
> needed, it could be queried or sorted as a date field? Examples coming to
> mind:
> year-month-day: 2009-12-01
> year-month (no day): 2009-11-00
> year only 2009-00-00
>
> Thanks!