R
Robin Chapple
I have a membership form that records financial transactions in a sub
form. [frmFees]
On the main form I need to record that the fee has been paid in a
Yes/No field [FeePaid]. I have this:
Private Sub FeePaid_BeforeUpdate(Cancel As Integer)
If Forms![frmFees]![Fee] > 1 Then
[FeePaid] = True
End If
End Sub
Where am I wrong?
Thanks,
Robin Chapple
form. [frmFees]
On the main form I need to record that the fee has been paid in a
Yes/No field [FeePaid]. I have this:
Private Sub FeePaid_BeforeUpdate(Cancel As Integer)
If Forms![frmFees]![Fee] > 1 Then
[FeePaid] = True
End If
End Sub
Where am I wrong?
Thanks,
Robin Chapple