In article <1132770807.878049.49150 (AT) g49g2000cwa (DOT) googlegroups.com>,
"stavrogan" <gfassbach (AT) mac (DOT) com> wrote:
Quote:
Do you mean that it will auto-update in the Current Record after 24
hours? |
If you are simply date-stamping NEW records to know when they were
created, then it doesn't need to update at all.
DateField {Date}
auto-enter calculation = Get(CurrentDate)
This auto-enter field will be given "today's" date when the record is
created.
If you really want a field to constantly update iteself, then it will
need to be a Calculation field (with Date result) that is Unstored.
DateField {Calculation, Date result, Unstored}
= Get(CurrentDate)
This field will update itself with "today's" date every time the field
is used anywhere (scripts, on-screen, other calculations), and since
the date only changes once per day (unless someone changes the
computer's system date), the field will also change once per day.
BUT there's little point I can see for using such a field since it
simply replicates the Get(CurrentDate) function itself - you may as
well just use the function wheverever you think you need the field. The
only reason I can think of for needing such a field would be for
on-screen / printout use, but then you can simply use the Date symbol
// typed into any text.
Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)