T
Terri
I have a confirmation message that I present when on the Before_Update event
of a field.
If MsgBox("Do you want to modify the accrual per day amount?", vbYesNo) <>
vbYes Then
Cancel = True
Me.Undo
End If
I only want to present this when an existing record is being modified. If a
new record is being created I don't want to present this message.
I tried If statements like:
If Not IsNull(Me.AccrualAmount) Then
and
If Me.AccrualAmount > 0 Then
but these did not work.
How can I prevent this message when users are entering in new records.
Thanks
of a field.
If MsgBox("Do you want to modify the accrual per day amount?", vbYesNo) <>
vbYes Then
Cancel = True
Me.Undo
End If
I only want to present this when an existing record is being modified. If a
new record is being created I don't want to present this message.
I tried If statements like:
If Not IsNull(Me.AccrualAmount) Then
and
If Me.AccrualAmount > 0 Then
but these did not work.
How can I prevent this message when users are entering in new records.
Thanks