I need a field to say Bank 1 if opt 1 is selected or bank 2 if opt 2 is selected. I can not seem to get this to work.
Private Sub txtwho2_BeforeUpdate(Cancel As Integer)
If optwho = 1 Then
txtwho2 = "Bank 1"
Else: txtwho2 = "Cardella"
End If
End Sub
Thanks for any help
Private Sub txtwho2_BeforeUpdate(Cancel As Integer)
If optwho = 1 Then
txtwho2 = "Bank 1"
Else: txtwho2 = "Cardella"
End If
End Sub
Thanks for any help