I have a daily time time. Two of the field in the table are employee name and date. I have a form for this table to input data. I also have a form to allow me to easier find specific records. Basically, another form allows me to enter part of the employee name, a start date, and end date and then a button launches the command to open the daily time form and find those records that meet the criteria. The problem I'm having is having a validation on the starting and ending date criteria boxes that I use to search for certain records. If either are blank I don't get any record returns. I put a validation rule on each that is <=Date(), but the validation only seems to work if an actual date is entered that does not meet the validation criteria. So if I enter an employee name and leave the start date and end date boxes empty and then click the button on my form to launch the daily time form the validations don't register. I tried using <=Date() And Is Not Null, but that didn't either. Any suggestions? Can I add something to the button that opens the Daily Time form to check and see if my start date and end date are empty?