the combo box selection returns a value from a table/query.
this is is the query:
Code:
SELECT JobT.Scheduled_Start, SiteT.Site_Name, ProjectT.Job_Type, BatchT.Batch_Number, ProjectT.Project_ID, JobT.Job_ID
FROM ProjectT INNER JOIN (BatchT INNER JOIN (SiteT INNER JOIN JobT ON SiteT.Site_ID = JobT.[Site_ID]) ON BatchT.[Batch ID] = JobT.Batch_ID) ON ProjectT.Project_ID = BatchT.Project_ID
WHERE (((JobT.Scheduled_Start) Between Date() And Date()+14) AND ((ProjectT.Project_ID) Like [Forms]![SchedulerMenuF]![Project_Combo]))
ORDER BY JobT.Scheduled_Start;
the reason its set to "like" is because the default value is * which does return all records. But then after the user selects an option in the combo box, the form must be closed and opened to get all again.
This is why I'm trying to get an 'all' option.