Results 1 to 4 of 4
  1. #1
    jlclark4 is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Dec 2010
    Location
    North Carolina
    Posts
    155

    Designing Reports

    Hey,



    I have a database set up and running but I want to make some reports that can replace what people have been doing in excel.

    Problem #1: I created a report with names and scores (names can be repeated so when I create the report I want a summary -- average score). Issue is I can not sort the averages in decending order which I need to do. Is there a way I can do that? I know I can set the individual scores that way but that does not help me.

    Problem #2: Is it possible to create reports with columns to prevent data from going on two pages. All I am providing is a list of names and averages which could fit onto one page using columns.

    Any suggestions are welcome!

    Thanks in advance

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    1) Clarify, you want to display the individual records but sort by the average, or just display a single record for each person with their average? The second would be easy, by basing the report on a totals query that averaged the data.

    2) In Page Setup you'll see a Columns tab.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  3. #3
    jlclark4 is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Dec 2010
    Location
    North Carolina
    Posts
    155
    I found the columns button.

    Clarification on question #1.
    A. Employee 1
    B. Review Score 1
    B. Review Score 2
    B. Review Score 3
    A. Employee 2
    B. Review Score 1
    B. Review Score 2
    B. Review Score 3
    A. Employee 3
    B. Review Score 1
    B. Review Score 2
    B. Review Score 3

    I want a report to show:

    Employee -- Average
    Employee -- Average
    Employee -- Average

    In descending order so those that have 100% are on top. I used the wizard and sorted in descending order but only had the option to do it by score which sorted the "B" components in descending order for each name.

  4. #4
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    You want to base the report on a totals query that only returns the averages.

    SELECT Employee, Avg(Score) As AvgScore
    FROM TableName
    GROUP BY Employee

    Changing everything in red to your table and field names of course.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Help with designing database
    By nimalp in forum Access
    Replies: 6
    Last Post: 09-15-2010, 10:34 AM
  2. Designing Form
    By Kookai in forum Forms
    Replies: 0
    Last Post: 07-30-2010, 11:03 AM
  3. Replies: 2
    Last Post: 08-28-2009, 05:16 AM
  4. questions on designing database
    By schultzy in forum Access
    Replies: 1
    Last Post: 07-18-2009, 03:44 PM
  5. Help Designing Tables
    By sakthivels in forum Database Design
    Replies: 7
    Last Post: 06-09-2009, 07:48 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums