I'm stumped.
I have a form built that is meant to autopopulate a bunch of various fields based on the selection in 1 combobox at the top of the form.
For looks, the form is broken into several pages (in the attached pictures, the "Cell Type" Combobox is meant to autofill the fixture, quantity, model number, substrate type, anchorage qty, and anchorage types for Furniture Types 1-12. These fields are located on pages labeled "By Cell Type 1-4", "By Cell Type 5-9", and "By Cell Type 9-12". So far I have set things up for 1-5. 1 through 4 work just as I would like. 5, which is on another page of the form (not sure if that's relevant) does not update when I change the cboCellType box. Any ideas what might be causing this issue? Here are some screenshots of what I'm looking at on the forms. My event procedure for an "on change" even is written below.
My code for a change event in the cboCellType combobox looks like the following:
Private Sub cboCellType_Change()
Me.txtCFix1.Value = Me.cboCellType.Column(1)
Me.txtCQty1.Value = Me.cboCellType.Column(2)
Me.txtCModNum1.Value = Me.cboCellType.Column(3)
Me.txtCMount1.Value = Me.cboCellType.Column(4)
Me.txtCAnchQty1.Value = Me.cboCellType.Column(5)
Me.txtCAnchType1.Value = Me.cboCellType.Column(6)
Me.txtCFix2.Value = Me.cboCellType.Column(7)
Me.txtCQty2.Value = Me.cboCellType.Column(8)
Me.txtCModNum2.Value = Me.cboCellType.Column(9)
Me.txtCMount2.Value = Me.cboCellType.Column(10)
Me.txtCAnchQty2.Value = Me.cboCellType.Column(11)
Me.txtCAnchType2.Value = Me.cboCellType.Column(12)
Me.txtCFix3.Value = Me.cboCellType.Column(13)
Me.txtCQty3.Value = Me.cboCellType.Column(14)
Me.txtCModNum3.Value = Me.cboCellType.Column(15)
Me.txtCMount3.Value = Me.cboCellType.Column(16)
Me.txtCAnchQty3.Value = Me.cboCellType.Column(17)
Me.txtCAnchType3.Value = Me.cboCellType.Column(18)
Me.txtCFix4.Value = Me.cboCellType.Column(19)
Me.txtCQty4.Value = Me.cboCellType.Column(20)
Me.txtCModNum4.Value = Me.cboCellType.Column(21)
Me.txtCMount4.Value = Me.cboCellType.Column(22)
Me.txtCAnchQty4.Value = Me.cboCellType.Column(23)
Me.txtCAnchType4.Value = Me.cboCellType.Column(24)
Me.txtCFix5.Value = Me.cboCellType.Column(25)
Me.txtCQty5.Value = Me.cboCellType.Column(26)
Me.txtCModNum5.Value = Me.cboCellType.Column(27)
Me.txtCMount5.Value = Me.cboCellType.Column(28)
Me.txtCAnchQty5.Value = Me.cboCellType.Column(29)
Me.txtCAnchType5.Value = Me.cboCellType.Column(30)
End Sub