Birthday list by month

S

Soyful

I have grouped my report my month but it also separates by year. I would like
a report of birthdays by month regardless of they year of birth. Is that
possible? Thanks.
 
B

BruceM

One way is to use this as the Grouping expression in the report:

=DateSerial(Year(Date()),Month([BirthDate]),1)

I would use a group header. In the header put a text box bound to
BirthDate, formatted as mmmm. Force a new page before the section (on the
group header property sheet). These are formatting choices that will not
affect the basic idea one way or the other.
 
F

fredg

I have grouped my report my month but it also separates by year. I would like
a report of birthdays by month regardless of they year of birth. Is that
possible? Thanks.

Group it by month instead of month and year.

In Report Design View. click on View + Sorting and Grouping
In the Report's Sorting and Grouping dialog:

Field/Expression Sort
=Month([DateOfBirth]) Ascending
 
B

BruceM

Ah! That's the one I was trying to think of. Tidier than DateSerial.

fredg said:
I have grouped my report my month but it also separates by year. I would
like
a report of birthdays by month regardless of they year of birth. Is that
possible? Thanks.

Group it by month instead of month and year.

In Report Design View. click on View + Sorting and Grouping
In the Report's Sorting and Grouping dialog:

Field/Expression Sort
=Month([DateOfBirth]) Ascending
 

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

Similar Threads


Top