how to pull out reports for a certain month from a calculated fiel

G

Guest

Hi, I need to pull out a monthly report on a calculated field. Before I had
the calculated field, I used to input the data directly in the column so the
table column was getting populated so i was able to query on a monthy basis.

My field is a renewal date field which has this formula:

=DateAdd("yyyy",1,[carte de membre])

My query formula to pull by month reports of that field (basically to see
who is coming up for renewal) goes like this:

SELECT [Members].[Prenom], [Members].[Nom], [Members].[Date de renouvellement]
FROM Members, Inscription
WHERE (((Month([Date de renouvellement]))=[Mois]));

But since I don't populate my table with the renewal date, (it only comes
out in the report ), I don't know how to pull out reports for a certain month
only.

Any idea?

Tracy
 

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