I enter text into an unbound control on a form that is referred to in the criteria section of a query. And from this, I can change the criteria of the query each time.The name of the control on the form (called Formtype) is Controlname. And I refer to this control in the criteria section of the query as: [Forms]![Formtype]![Controlname]PROBLEM: I can only enter 1 criteria at a time. For example, the query works if I enter "A" on the form to find all records with type "A". However, I want to be able to enter multiple criteria on the form such as: "A Or B" to find two types. The above example would not work and the query would not return any records. It seems as if Access does not evaluate the text first before passing it to the query, so that it literally searches for the text "A Or B" in the table and not "A" or "B" as I intended.Does anyone have any idea on how to solve this? Any suggestions would be very much appreciated.Thanks in advance