ok i have a query that pulls its parameters from a form. If a filed on the parameter form is blank, or is null, the query will search without using a parameter. To do this I use the
when I save the query and re open it, access creates a few extra fields and expands itself to add the formula in several places.
The problem is, that when I decide to include another field parameter in the query, the results are not restricted by the new field.
Is there something I can do to make the query effectively incorporate the new addition, or would it be necessary to add the new parameter via a sql statement?
Code:
[Forms]![frm_Reporting]![Specialist] or ([Forms]![frm_Reporting]![Specialist]is null)
The problem is, that when I decide to include another field parameter in the query, the results are not restricted by the new field.
Is there something I can do to make the query effectively incorporate the new addition, or would it be necessary to add the new parameter via a sql statement?
Comment