I want to have the date be mm/yyyy. When i change the input mask for short
date, when i type 3/2008 it reverts back to 3/1/2008. How can I change this?
Ben
You can't.
A Date/Time field is actually stored as a double float count of days and
fractions of a day (times) since midnight, December 30, 1899. As such a
date/time must correspond to a precise moment of time. March 2008 has been a
whole bunch of moments, some pleasant, some irksome, some boring - but 03/2008
is not a valid time.
You can set the FORMAT of the textbox to mm/yyyy it will display March first,
or March 28th, as 03/2008 - but that's not what's stored, you're concealing
data (the day) and may run into problems searching the field.
If you really want to store only the month and year, consider using a Text
field or two Number/Integer fields.