Ok I did something wrong. My Check box name is "FineAssessed" and my field I
want to auto update's name is "TotalBill". I place the following code in the
after update of the "TotalBill" in the event procedure
Private Sub FineAssessed_AfterUpdate()
[FineAssessed] = Not Me![TotalBill] = 0
End Sub
I don't quite understand what you mean by placeing the same code in the
forms's current event. Thanks for your help!
fredg said:
On Wed, 14 Mar 2007 08:28:33 -0700, Code Agent wrote:
I have a field with the yes/no fomat. I would like an automatic "check mark"
be placed in that field if another field has the value of anything other than
$0.00. Any help would be greatly appreciated.
Code the other control's AfterUpdate event:
[CheckBox] = Not Me![OtherField] = 0
Place the same code in the Form's Current event.