S setis Registered User. Local time Today, 14:06 Joined Sep 30, 2017 Messages 127 Nov 9, 2017 #1 Could somebody help me with the AfterUpdate() VBA for a texbox in a form? If the value is >9000 the checkboxA must be checked. Thanks in advance!
Could somebody help me with the AfterUpdate() VBA for a texbox in a form? If the value is >9000 the checkboxA must be checked. Thanks in advance!
arnelgp ..forever waiting... waiting for jellybean! Local time Tomorrow, 05:06 Joined May 7, 2009 Messages 20,564 Nov 9, 2017 #2 Private Sub textboxNumber_AfterUpdate() Me.CheckBox = (Val("0" & Me.textboxNumber)>9000) End Sub
S setis Registered User. Local time Today, 14:06 Joined Sep 30, 2017 Messages 127 Nov 9, 2017 #3 Great. Thank you so much one more time!