This is what I have:
a part of a database that I have is keeping track of the number of points that a member of club has.
I want to create a report that will displays the members name, their member ID, their total points, and a number that shows how many points they have as a perecentage of the total points possible. Everthing is working except for the % part. I can't figure out how to do it.
This is basically what I have so far, that relates to this problem:
Member_Info: shows basic info about each member, assigns their ID number.
Points table: contains what each member 'scores' each week.
includes scores for 'perfect club1 member' and 'perfect club2 member,' which represent the best possible score for the two different groups involved.
points total: sums the points for each individual member.
I'm not sure how to get access to take what each member has for points and divide it by what a perfect score is. I created a separate table to just represent what the perfect score is, then divide those two, but that doesn't seem to be working either. All of this is also complicated because their are two groups, so depending on which group a person is from, they have a different possibitly for the best possible score.
as always, thanks for you help everyone.
-L
a part of a database that I have is keeping track of the number of points that a member of club has.
I want to create a report that will displays the members name, their member ID, their total points, and a number that shows how many points they have as a perecentage of the total points possible. Everthing is working except for the % part. I can't figure out how to do it.
This is basically what I have so far, that relates to this problem:
Member_Info: shows basic info about each member, assigns their ID number.
Points table: contains what each member 'scores' each week.
includes scores for 'perfect club1 member' and 'perfect club2 member,' which represent the best possible score for the two different groups involved.
points total: sums the points for each individual member.
I'm not sure how to get access to take what each member has for points and divide it by what a perfect score is. I created a separate table to just represent what the perfect score is, then divide those two, but that doesn't seem to be working either. All of this is also complicated because their are two groups, so depending on which group a person is from, they have a different possibitly for the best possible score.
as always, thanks for you help everyone.
-L