I am trying to combine the results of a combo box and a text box from a form and use the result as criteria in a query that feeds a report. The combo box is a list of operators (=, >, <, etc) and the text box is a user entered amount (i.e., 5000). The combination would be "> 5000" and should appear as criteria on the query. In other words, the concatenated result would drive the query to show Capital Need >5000 (or whatever the user selects.
I tried using [Forms]![Frm_REPORT_Parameter_01]![Combo11]&[Forms]![Frm_REPORT_Parameter_01]![Text9] in the query criteria area but the result seems to ignore the operator (In other words, if the result should be ">5000" the query will produce those records equal to 5000.
I know the concatenation is working in structure because I then created a text box directly on the form that shows the concatenation result and it shgwos it as "> 5000". Naturally, I tried to have the query criteria simply take the result of that text box (Forms![Frm_REPORT_Parameter_01]![Text11]) but it comes back with null results.
I sincerely appreciate any help in getting this fixed!
Thank you.
I tried using [Forms]![Frm_REPORT_Parameter_01]![Combo11]&[Forms]![Frm_REPORT_Parameter_01]![Text9] in the query criteria area but the result seems to ignore the operator (In other words, if the result should be ">5000" the query will produce those records equal to 5000.
I know the concatenation is working in structure because I then created a text box directly on the form that shows the concatenation result and it shgwos it as "> 5000". Naturally, I tried to have the query criteria simply take the result of that text box (Forms![Frm_REPORT_Parameter_01]![Text11]) but it comes back with null results.
I sincerely appreciate any help in getting this fixed!
Thank you.