I have a form that has a combo box, which contains contact names. Once a name is selected from the combo box, I'd like it to automatically fill the Address, City, State and Zip. I've seen solutions on this but I just can't seem to make it work. Here are the details
Table = tblNI
NIID
NIName
NIAddress
NICity
NIState
NIZip
Combo42
Private Sub Combo42_AfterUpdate()
Me.NIAddress = Me.Combo42.Column(2)
Me.NICity = Me.Combo42.Column(3)
Me.NIState = Me.Combo42.Column(4)
Me.NIZip = Me.Combo42.Column(5)
End Sub
Thanks in advance
apryor
Table = tblNI
NIID
NIName
NIAddress
NICity
NIState
NIZip
Combo42
Private Sub Combo42_AfterUpdate()
Me.NIAddress = Me.Combo42.Column(2)
Me.NICity = Me.Combo42.Column(3)
Me.NIState = Me.Combo42.Column(4)
Me.NIZip = Me.Combo42.Column(5)
End Sub
Thanks in advance
apryor