I am using a Parameter Select based on the value in a combo box on a form. The form has multiple combo boxes and the purpose is to go in and be able to perform a dynamic query based on multiple fields and the values I select for the fields. If I dont select a value in that field it should not limit the returned value. IF the value in the form is null it returns no records. Is there a way to set it up to return all the records if blank. I have tried using Like ([Forms]![Form]![Field]) & "*" in the criteria and it returns all of the possible values except null values. I also tried puting or Is Null and it gave me all the records everytime. And IS Null gave me no records. Basically I want it to search on value I give it in the form but if the form has no value I want it to give me all the records. Thanks