You can build a query to show all people with a birthday this month in the
query builder
FirstName lastName BirthDAte
BMonth:Month([BirthDate])
= 7
In the query builder, you can see how I put in a new collum, and called it
BMonth. If you view the query, you will that it simply returns the month. I
also in the example show that I put in a criteria of 7 (for this month).
You could also show people with a birthday TO day by adding a anther column
with the day function...
BDay
ay([BirthDate])
= 22
Today is July 22, and thus anyone with a birthday to day will show in the
query....
So, just add a few more collumns to the query, and you can then sleect by
month, or even day...