Mask Question

  • Thread starter Thread starter paduanow
  • Start date Start date
P

paduanow

Date Field

I need the data for the data field to be formatting like

yyyymmdd Example: 20090914

No dashes or slasher and I must have 8 digits. So I need 0 to fill.

Do I use a date field or text
 
Use a field with a Date/Time data type, and whenever necessary
format it with;

Format([YourDateField], "yyyymmdd")

BTW - you don't specify what the name of the field is, but just as a point
of information, don't name it Date. That is a reserved word in Access.
 
Use a Date/Time datatype in the table where the data is stored, and set the
format for the textbox displaying the date in either your form or report to
"yyyymmdd". You will be able to enter the date in any valid format; after
entry, it will display in the desired format.

HTH,

Rob
 
If you ever want to calculate values from the date, it is far easier to use
a date/time field. Formatting the display is trivial:

Format([My Date Field], "yyyymmdd")

If you use text, you'll need to reformat it and convert it to a date to do
any calculations on it.
 
Back
Top