Input on checkbox

  • Thread starter Thread starter wolfewl via AccessMonster.com
  • Start date 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.
 
In the AfterUpdate of your checkbox, put something like:

If Me.Working = True Then
Me.[Notification #] = "Not Written"
End If
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top