View Full Version : Query to return birthdays today


Peter C
12-27-2001, 01:39 PM
I need to run a query to return the names of people who have a birthday today. I have a table with First Name, Last Name, DOB.
Any help would be greatly appreciated.
Many thanks

Peter

Jeanette
12-27-2001, 01:47 PM
In the query grid enter Date()in criteria under the DOB field.

Pat Hartman
12-28-2001, 09:06 AM
It's a little more complicated than that. You need to match only on month and day.

Where Format(DOB,"mm/dd") = Format(Date(),"mm/dd");