Using Access 2000
In a club's Membership database there is a table, tblMembers. Included in the fields are MemberID, LastName, FirstName, DateOfBirth, WeddingAnniversary, DateJoined.
The club's fiscal year is from October 1 through September 30.
They desire a list of members showing as follows...
1. Sorted chronologically from October through September
2. Birth month and birth day for members in each month
3. Wedding Anniversary month and day and # of years married in each month
4. Club membership Anniversary and # years in club in each month
Included in a query to produce the results for the report, are columns...
Sept30Age: DateDiff("yyyy",[DateOfBirth],DateSerial(Year(Date()),9,30))
Sept30WeddingAnniversary: DateDiff("yyyy",[WeddingAnniversary],DateSerial(Year(Date()),9,30))
Sept30KiwanisAnniversary: DateDiff("yyyy",[YearJoined],DateSerial(Year(Date()),9,30))
My questions are...
1. Is this on the right track to produce the desired results?
2. How to get this sorted properly in order to produce a report that corresponds chronologically to the fiscal year, October 1 through September 30?
Thanks.
Tom
In a club's Membership database there is a table, tblMembers. Included in the fields are MemberID, LastName, FirstName, DateOfBirth, WeddingAnniversary, DateJoined.
The club's fiscal year is from October 1 through September 30.
They desire a list of members showing as follows...
1. Sorted chronologically from October through September
2. Birth month and birth day for members in each month
3. Wedding Anniversary month and day and # of years married in each month
4. Club membership Anniversary and # years in club in each month
Included in a query to produce the results for the report, are columns...
Sept30Age: DateDiff("yyyy",[DateOfBirth],DateSerial(Year(Date()),9,30))
Sept30WeddingAnniversary: DateDiff("yyyy",[WeddingAnniversary],DateSerial(Year(Date()),9,30))
Sept30KiwanisAnniversary: DateDiff("yyyy",[YearJoined],DateSerial(Year(Date()),9,30))
My questions are...
1. Is this on the right track to produce the desired results?
2. How to get this sorted properly in order to produce a report that corresponds chronologically to the fiscal year, October 1 through September 30?
Thanks.
Tom