Filter Bday list by month

G

Guest

I have a form where the persons name and birthday and the spouse name and
birthday and anniversary are entered. I want to be able to run a report and
print all birthdays and anniversaries for the month of [Enter month] how
would i set up the query / report to show this information?

thanks in advance!!
 
E

Ed Robichaud

Assuming that you have a field named "birthday",
add a column in your query design and enter:

DatePart("m",[birthday]) AS Mth, tblMy Table.Birthday

for the criteria of that same column, put:

[Enter MONTH 1-12]

-Ed
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top