I'm not figuring out the correct syntax for creating a recordset object where I'm pulling out records with a specific date. The query I've got started is this:
SELECT * FROM calls WHERE [Next Call Date] =
But I can't quite get it finished. I want to search for the current date, or Now(), but everything I've tried so far either returns an error or doesn't catch the matching records. Any help? I tried testing without the time stamp put in by Now(), by doing DateSerial(Year(Now())... etc. but no luck.
SELECT * FROM calls WHERE [Next Call Date] =
But I can't quite get it finished. I want to search for the current date, or Now(), but everything I've tried so far either returns an error or doesn't catch the matching records. Any help? I tried testing without the time stamp put in by Now(), by doing DateSerial(Year(Now())... etc. but no luck.