Hi Guys,
Got another problem with a query, this time the query will be used to produce a report of all the jobs with the current date in the JobDate field, but having some problems filtering this in the query. I have added all the fields from tblJobs to the query and tried all sorts in the criteria for the JobDate field. The dates are selected from Calendar Picker and stored in the format DD/MM/YYYY can anybody help me?
The SQL for the query is:
SELECT tblJobs.[JobID], tblJobs.[CustomerID], tblJobs.[JobType], tblJobs.[JobDate], tblJobs.[JobStartTime], tblJobs.[JobEndTime], tblJobs.[JobNotes], tblJobs.[Completed], tblJobs.[Paid]
FROM tblJobs
WHERE (((tblJobs.[JobID])=Date()));
Any thoughts are appreciated!
Ryan