Thanks for your help! I do have one more question, please. Here are my
macro conditions:
[Forms]![2005-6 St Clem Students]![Custody]="M"
[Forms]![2005-6 St Clem Students]![Custody]="D"
The action is SetValue for each.
If I want to use [Forms].[Form1].[NewRecord] to see if it is new before
the action is done, how exactly would I word it?
(I assume that I want to substitute [2005-6 St Clem Students] for
[Form1], right?
Thanks again!
Allen Browne said:
Test if the NewRecord property of the form is True, e.g.:
[Forms].[Form1].[NewRecord]
In an Access 2003 macro, how can I check to see if the record I am
working on is new? Thanks!