I have a set of check boxes in excel one of them being "chkOther". when this is true i want the cursor to go to a text boxt "txtVendorPerfOther" and I want to make it required. If it's not true then i would like for txtVendorPerfOther to be locked.
here is what i have so far...
thanks for any help!
here is what i have so far...
Code:
Private Sub chkVendorPerfOther()
If chkVendorPerfOther Is True Then
txtVendorPerfOther ????
???
End If
End Sub