I want to be able to update value in two text boxes based on the value in a combo box. This would be in a Access form.
I am getting a compile error: Method or data member not found
Below is the code i am using...
Private Sub ApprovingOfficial_AfterUpdate()
Me.AO_Credit_card = Me.ApprovingOfficial.Column(2)
Me.AO_Credit_card = Me.Department.Column(3)
End Sub
What am I doing wrong?