"=Date()" should work--it does for me. Perhaps you have a field or control named "Date"? That can cause a #Name? error. It's best to avoid using names of built-in properties and functions when naming tables, fields, forms, and controls. "Name" and "Date" are the most common problems with this, since they're such obvious names.
If you can't rename the field or control, try using the expression "=CDate(Int(Now()))". Int(Now()) extracts the Integer part of the current date and time, which is the date part. You then have to convert it back to a datetime value. Rick Sprague
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.