J
Joseph Ellis
Hello all,
I have a table of birthdays that contains, among other things, a date
and corresponding text:
[fullDate]
[text]
Which on a report produces:
April 5: Bob's Birthday
April 11: Jane's Birthday
April 11: Joe's Birthday
April 22: Bill's Birthday
Of course, several people can have the same birthday. First of all,
I'd like to make a query that selects only unique dates. Then I'd
like to make a report that prints each unique date along with the
names of all the people who share that birthdate:
April 5: Bob's Birthday
April 11: Jane's Birthday
Joe's Birthday
April 22: Bill's Birthday
So far I've isolated the uniqe dates with:
SELECT DISTINCT [fullDate] FROM [myTable];
Now how do I go about printing all the names for each unique date?
I'm assuming it'll have to be a subreport, but how do I make the
subreport "list all the people who share this birthdate"?
Thanks for any help.
Joseph
I have a table of birthdays that contains, among other things, a date
and corresponding text:
[fullDate]
[text]
Which on a report produces:
April 5: Bob's Birthday
April 11: Jane's Birthday
April 11: Joe's Birthday
April 22: Bill's Birthday
Of course, several people can have the same birthday. First of all,
I'd like to make a query that selects only unique dates. Then I'd
like to make a report that prints each unique date along with the
names of all the people who share that birthdate:
April 5: Bob's Birthday
April 11: Jane's Birthday
Joe's Birthday
April 22: Bill's Birthday
So far I've isolated the uniqe dates with:
SELECT DISTINCT [fullDate] FROM [myTable];
Now how do I go about printing all the names for each unique date?
I'm assuming it'll have to be a subreport, but how do I make the
subreport "list all the people who share this birthdate"?
Thanks for any help.
Joseph