First, Thanks for your reply to my question. I changed it to Text
field.
Then what do i do to make it accept dates. Such as
I want to just enter 5-29 and press enter and have it automatically
fill
in
as 5/29/2005.
You can't do that directly in the table and/or a data entry form. You
can,
however, cause it to DISPLAY that on a form or report by putting the
following in the control source of a text box.
=Format([YourTextDateField],"mm/dd/yyyy")
--
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security:
www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Big List:
www.ltcomputerdesigns.com/JCReferences.html
Hi Lynn,
First, Thanks for your reply to my question. I changed it to Text
field.
Then what do i do to make it accept dates. Such as
I want to just enter 5-29 and press enter and have it automatically
fill
in
as 5/29/2005.
Is there a way to do that?
:
You can't do that if the datatype of your field is Date. You would
have
to
make your field a Text field.
--
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security:
www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Big List:
www.ltcomputerdesigns.com/JCReferences.html
I am having trouble setting a date/time data type field to accept
text
values.
For example,
Currently the date/time can only put dates (5-29-2005)
But, I want to put text in there too
For example: if the date is not available I would like put "N/A" to
indicate
that date is not available.