After Update Code

  • Thread starter Thread starter Bob Vance
  • Start date Start date
B

Bob Vance

I have a combo box [cbStatus] which has a row source Yes;No
and a text box [tbInvocing] if [cbStatus] is "No" can [tbInvocing] show "No"
 
Dear Bob, use the following code on the After Update event (I tried it in
Office2003:

If Me.cbStatus.Value = "No" Then
Me.tbInvocing= "No"
Else
Me.tbInvocing= ""
End If

Hope this helps,

GeorgeCY

Ο χÏήστης "Bob Vance" έγγÏαψε:
 

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