halewilson
Technical User
Hello good neighbors,
I desperately need assistance with creating an advanced report that sums points for each db_member then break out these members into 4 groups. My current report displays total points earned for each member and this works fine, but each time I run this single report I end up with thousands of pages to scroll through. To make things simpler I wish to group these members into four groups according to the amount of points earned ie. Novice(0-9,999), Junior(10,000-19,999), Senior(20,000-49,999), and Elite(50,000+).
I have two tables, tblMembership and tblPoints with a one to many relationship. After each members points are summed how do I go about sorting them into groups?
This is what I have working so far...
SELECT tblMembership.Name, tblMembership.Address, tblMembership.CityState, tblMembership.Zip, tblMembership.Number, tblMembership.Active, tblMembership.Selected, tblPoints.Date, tblPoints.Description, tblPoints.Points
FROM tblMembership INNER JOIN tblPoints ON tblMembership.Number = tblPoints.Number;
Do I need to build a new table to hold the sum values then work off of the new table?
Thanks in advance!
I desperately need assistance with creating an advanced report that sums points for each db_member then break out these members into 4 groups. My current report displays total points earned for each member and this works fine, but each time I run this single report I end up with thousands of pages to scroll through. To make things simpler I wish to group these members into four groups according to the amount of points earned ie. Novice(0-9,999), Junior(10,000-19,999), Senior(20,000-49,999), and Elite(50,000+).
I have two tables, tblMembership and tblPoints with a one to many relationship. After each members points are summed how do I go about sorting them into groups?
This is what I have working so far...
SELECT tblMembership.Name, tblMembership.Address, tblMembership.CityState, tblMembership.Zip, tblMembership.Number, tblMembership.Active, tblMembership.Selected, tblPoints.Date, tblPoints.Description, tblPoints.Points
FROM tblMembership INNER JOIN tblPoints ON tblMembership.Number = tblPoints.Number;
Do I need to build a new table to hold the sum values then work off of the new table?
Thanks in advance!