Is it possible to have the value in a text box be set automatically based on the value in another textbox?
For example, Textbox Gender is Male, so Textbox Reference is Male.
Thank you.
For example, Textbox Gender is Male, so Textbox Reference is Male.
Code:
IFF Me.Gender = "Male" Then
Me.Reference = "Male" And
Me.ID = "ea13-02c"
Else If
Me.Gender = "Female"
Me.Reference = "Female" And
Me.ID = "ea13-01c"
End If
Thank you.