Where to find the Data Type to change a field to text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can not find where to go to get to data type to change field from date to
text. Please help.
 
You would open the table in design view and change the field type, but a
date is stored in the table as a number. If you change it to a text field
you will end up with a pretty much meaningless field.

If you want to display a date in a different FORMAT, then you can do so in
your forms, queries, and reports. For example...

=Format([SomeDateField],"medium date")

or

=Format([SomeDateField],"long date")
 
Back
Top