Automatic update

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I'm working on a training databse and I need that everytime someone enter
the name of a particular course on the form, that it automatically updates
the yes/no for the field basic skills. E.g. If someone enters a course called
SETTING A BUDGET then the basic skills button automatically shows a tick
(which means YES).
Any ideas?
 
On the after update event of the text field you can write

If Me.TextFieldName = "SETTING A BUDGET" then
me.TickBoxName = true
End If
 

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