> > My form and underlying table has short date fields (dd/mm/yyyy).
> >
[quoted text clipped - 8 lines]
>
> Formatting has zero to do with this. That affects display only.
> Rick,
>
> Thanks for your interest.
>
> The date field comes from the underlying table where the data is
> entered using the now() function....is there a better method?
Now() includes date and time. If you don't want to deal with time then use
Date().

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
If you want the date only, not date and time, use Date() instead of Now().
To dump the time component from existing records, use an Update query
(Update on Query menu, in query design.) If the field is named Date1, you
would update it to:
DateValue([Date1])
Since you use non-US dates, this may also help your at another time:
International Date Formats in Access
at:
http://allenbrowne.com/ser-36.html

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Rick,
>
[quoted text clipped - 20 lines]
>>
>> Formatting has zero to do with this. That affects display only.
ken - 16 Mar 2007 05:18 GMT
Thanks everybody - great efficient service!
> If you want the date only, not date and time, use Date() instead of Now().
>
[quoted text clipped - 32 lines]
> >>
> >> Formatting has zero to do with this. That affects display only.