I have built  a search form to feed information to a query. The form uses combo boxes tied to table values, and all have wild cards built into them so if the user leaves the combo box they get all the records. I also have to text boxes representing start date and end date. I would like to allow the user to leave these blank and get all there as well. I have been looking through my one Access book, as well as searched all over the internet, but I cant seem to find the way to do this. 
My filter criteria for the text based combo boxes are like this:
	
	
	
		
My filter criteria for the Start and End Dates looks like this:
	
	
	
		
In this case of the user leaves the date values blank, the query returns nothing. I would like to return all dates if that is the case. I am assuming it is my lack of knowledge of wild cards and how they work with date values.
 My filter criteria for the text based combo boxes are like this:
		Code:
	
	
	Like "*" & [Forms]![ReportDesignF]![Company] & "*"
		Code:
	
	
	Between [Forms]![ReportDesignF]![StartDate] And [Forms]![ReportDesignF]![EndDate]+#11:59:59 PM# 
	

 
 
		