Static Dates in Forms?

S

ssamarron

This is probably very simple but I can't figure out how to add the current
date to a form and NOT have it updated by the computers internal clock and
calendar. Is it possible to create a formula that populates the current date
and time in their fields and for those dates and times to be permanent?
 
O

Ofer

In the default property of the field in the form write
=Now()
that will return the current date and time

=date()
Will return the current date

=Time
Will return the current time
====================================
Every time you add a new record, the field will be filled with the default
you assign to it
 
Top