Sorry if that wasn't too clear but it is hard to sum up.
Table Holiday which has one field named hDate
Table TimeSheet which has tsDate,Code
Sample Data
Holiday
7/4/2012
12/24/2012
12/25/2012
12/26/2012
Sample Data
TimeSheet
12/27/2012,W
12/24/2012,H
12/25/2012,W
I need to verify based on a date range that every record in the Holiday table that is between the date range exists in the Timesheet table and that they have an H value entered for Code
So if the date range passed in was 12/24-12/30 then the results should be empty since no data exists in timesheet for 12/26 and 12/25 has a code W in it. So basically I need an exists query to do this