I have a form displaying some jobs and dates. I want to code a button that filters all records to show me today's jobs only, but I'm having some trouble
' Apply filter to show only today's jobs
DoCmd.ApplyFilter , "Date = '" & Now()
That doesn't work because Now() also contains the time.
I tried:
DoCmd.ApplyFilter , "Date = '" & Date
but I don't think I have the inverted commas in the right place (As it wouln't let me do: =Date()
Any help is most welcome

' Apply filter to show only today's jobs
DoCmd.ApplyFilter , "Date = '" & Now()
That doesn't work because Now() also contains the time.
I tried:
DoCmd.ApplyFilter , "Date = '" & Date
but I don't think I have the inverted commas in the right place (As it wouln't let me do: =Date()
Any help is most welcome
