I new to VBA and I am having problems having my combo box auto fill the next text box. The table it pulls from is called Code-LeaseProvision and it has only 2 columns in it. So when built the combo box it pulls the both rows. One is labeled "Code" and other other "ProvisionDescription" I have it set when you use the combo box it fills Code but it will not fill the next text box labeled "ProvisionDescription". So when I put the event into the ProvisionDescription afterupdate as a VBA code. This is what I have:
Private Sub desc_AfterUpdate()
Me.[ProvisionDescription] = Me.
Private Sub desc_AfterUpdate()
Me.[ProvisionDescription] = Me.
Code:
.Column(1)
End Sub
It fills the combo box but will not fill and update the LeaseProvision Text box. Thanks for any help.