Sin has attended:
Access Intermediate course
Access Advanced course
Access VBA course
Default value in a field
I would like the default value in a date field to be the date that the form is being used so that the user has the choice of keeping that date rather than inputting it manually. how do I do this?
RE: Default value in a field
Hi Sinead
It sounds like you want to default the Date field on the form to the current date.
To do this:
Set the Default value for the Date Text Box on the form to
=Date()
This will always show the current date (as set by the PC's internal clock)
Regards
Carlos