To save the contents of the combo column you need to assign the values from
this coumn to the form field. So on the after update event of the combo you
need to insert the code
Me.Field1=Me.ComboName.Column(0) ' The column number start with 0
Me.Field2=Me.ComboName.Column(1)
Me.Field3=Me.ComboName.Column(2)
Me.Field4=Me.ComboName.Column(3)
Me.Field5=Me.ComboName.Column(4)
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.