G
Guest
Hello Access Nation, I am getting a Data Type mismatch error message when I
select the second combo box in my form. I am trying to create 3 combo boxes,
cboQuartile, cboRating, and cboIncreasePercent. All the data is in one table
Increases6-18. In cboQuartile RowSource I have SELECT DISTINCT
[Increases6-18].Quartile FROM [Increases6-18]. In the after update code for
cboQuartile I have On Error Resume Next
cboRating.RowSource = "Select Distinct [Increases6-18].Rating " & _
"From [Increases6-18] " & _
"WHERE [Increases6-18].Quartile = '" & cboQuartile.Value & "' " & _
"Order By [Increases6-18].Rating;"
I select cboQuartile and when I select the cboRating I get the data type
mismatch error. Your help is much needed and appreciated. Thanks
select the second combo box in my form. I am trying to create 3 combo boxes,
cboQuartile, cboRating, and cboIncreasePercent. All the data is in one table
Increases6-18. In cboQuartile RowSource I have SELECT DISTINCT
[Increases6-18].Quartile FROM [Increases6-18]. In the after update code for
cboQuartile I have On Error Resume Next
cboRating.RowSource = "Select Distinct [Increases6-18].Rating " & _
"From [Increases6-18] " & _
"WHERE [Increases6-18].Quartile = '" & cboQuartile.Value & "' " & _
"Order By [Increases6-18].Rating;"
I select cboQuartile and when I select the cboRating I get the data type
mismatch error. Your help is much needed and appreciated. Thanks