Input on checkbox

  • Thread starter wolfewl via AccessMonster.com
  • Start date
W

wolfewl via AccessMonster.com

I need to enter "Not Written" if the checkbox 'Working' is checked.

I figure I can use after_update, but, I don't know how to make it input "Not
Written" in my 'Notification #' column.

Any help will be appreciated.
 
D

Douglas J. Steele

In the AfterUpdate of your checkbox, put something like:

If Me.Working = True Then
Me.[Notification #] = "Not Written"
End If
 
W

wolfewl via AccessMonster.com

Thanks, I'll try that!
In the AfterUpdate of your checkbox, put something like:

If Me.Working = True Then
Me.[Notification #] = "Not Written"
End If
I need to enter "Not Written" if the checkbox 'Working' is checked.
[quoted text clipped - 3 lines]
Any help will be appreciated.
 
Top