Alright I am still new to the VBA world but I am giving my coding a try, and so far it is no good. Here is the problem, I have a combo box that pulls down 36 different selections. Each of the 36 selections all have different responses and as well a different value. So if the user pulls down the first selection from cboCode then he will need to have it redirect the next combo box cboResponse to show from codes-Yes1 (Response column) and also have another combo box cboValue (Raw column) to show from Codes-Value1. I know this should be an easy but long If elseif statement but I am not doing as well I think with it or it least it doesn't look right and I want to be on the right path before wasting a ton of work.
If Me.cboCode = cboCode.Column(2)"1" Then
Me.cboResponse.RowSource = [codes-Yes]![Response]
Me.cboValue.RowSource = [code-Value1]![Raw]
Elseif
Me.cboCode = cboCode.Column(2)"2" Then
and etc.
End If
If Me.cboCode = cboCode.Column(2)"1" Then
Me.cboResponse.RowSource = [codes-Yes]![Response]
Me.cboValue.RowSource = [code-Value1]![Raw]
Elseif
Me.cboCode = cboCode.Column(2)"2" Then
and etc.
End If