G
Guest
I have a form that has two cascading combo boxes on it. I would like to have
a third combo box that is populated based on the data entered in the two
combo boxes. Here is my current layout
The two cascading combos are “cboModel†and “cboHousingâ€. The third combobox
is “cboStroke†for its row source I was just using an IIf Statement and that
works but I can only get it to return one value and I would like to have up
to three or more values in combobox.
Here is what I have tried so far.
Stroke: IIf(Forms!frmQuote!SubfrmQuote!cboModel=1,24,
IIf(Forms!frmQuote!SubfrmQuote!cboModel=1 And
Forms!frmQuote!SubfrmQuote!cboHousing=109.88,36 AND 24,0))
I know in the "And in the true part of the nested IIf is not being used
correctly I am just using this to try and explain that if true I would like
to return two values for the combobox.
Thank you for your help
Cheers
TC
a third combo box that is populated based on the data entered in the two
combo boxes. Here is my current layout
The two cascading combos are “cboModel†and “cboHousingâ€. The third combobox
is “cboStroke†for its row source I was just using an IIf Statement and that
works but I can only get it to return one value and I would like to have up
to three or more values in combobox.
Here is what I have tried so far.
Stroke: IIf(Forms!frmQuote!SubfrmQuote!cboModel=1,24,
IIf(Forms!frmQuote!SubfrmQuote!cboModel=1 And
Forms!frmQuote!SubfrmQuote!cboHousing=109.88,36 AND 24,0))
I know in the "And in the true part of the nested IIf is not being used
correctly I am just using this to try and explain that if true I would like
to return two values for the combobox.
Thank you for your help
Cheers
TC