yalebulldog Posted April 25, 2002 Posted April 25, 2002 Greetings- I would like to print a report and have it sort by this calc field: Sport match=(Sport_1 & "" & Sport_2 & "" & Sport_3) The problem! There are records that have more than one "Sport" assigned to it and those are shown as an individual record. Example: Name field = "Yalebulldog" Sport_1 = "Soccer" Sport_2 = "Track" The report would print all those records associated with sport_1 "Soccer" and then show record "Yalebulldog" separate from all the other records the have sport_1 "Soccer". I would like "Yalebulldog" grouped with sport_1 "soccer" and then grouped with sport_2 "Track". Is this possible?
djgogi Posted May 8, 2002 Posted May 8, 2002 You should split your table in two separated entities since you have many to many relationship between them, and than print your reports from the join table after sorting on sportID. For ex. File group(groupID,name) File sport(sportID, sportName) Join File group_sport (groupID,sportID) Dj
Recommended Posts
This topic is 8247 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now