Results 1 to 2 of 2
  1. #1
    AccessForumUser is offline Novice
    Windows 10 Access 2013 64bit
    Join Date
    Jun 2017
    Posts
    19

    summarizing drop down results

    I'm using lookup values to view totals from my table in my Detail pane of my report. I'm using a date range criteria in my query as well as 2 expressions to convert 2 check boxes to decimal values.



    the problem i have is that when the same lookup name comes up in my report results, it is shown however many times there is a record with that name in it, so it's basically showing a summary on each record instead of the total number for the person.

    if I use the Totals button, and put my values in below the report footer, i get the numbers, but they are all compounded together from all the names.

    my question is, is it possible to organize the totals under each name instead of repeating the same name over and over with that total?

    See below to understand if this doesn't make 100% sense..:
    Right now I see this:

    Roger
    bought # of cars - 2

    Sue
    bought # of cars - 6

    Roger
    bought # of cars - 3

    Tara
    bought # of cars - 4

    Sue
    bought # of cars - 1

    What I would like to see is this:
    Roger
    bought # of cars - 5

    Sue
    bought # of cars - 7

    etc..

    Any help would be appreciated... Thanks!

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,523
    you need some queries, the base query, qsBaseRng , the data in a date range, select * from table between date1 and date2

    1 qry , qsCountOfCarsBought, based on qsBaseRng, select Count(car) from qsBaseRng

    1 qry, qsCarsByPerson, : select person,Count(Cars) from qsBaseRng

    1 qry to analyze both, bring in both qrys ABOVE, qsCountOfCarsBought and qsCarsByPerson
    to get your PERSON ,[COUNTofCARS]-[COUNTofPERSONCARS]

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

Similar Threads

  1. Replies: 3
    Last Post: 03-06-2014, 02:47 AM
  2. Summarizing a given table in this way,
    By jamal numan in forum Access
    Replies: 6
    Last Post: 05-29-2013, 02:31 PM
  3. Replies: 5
    Last Post: 05-14-2012, 02:01 PM
  4. Summarizing records in a subreport
    By goodguy in forum Reports
    Replies: 5
    Last Post: 09-24-2011, 10:32 AM
  5. Trouble Summarizing in Group Footer
    By Millerguitarworks in forum Reports
    Replies: 2
    Last Post: 12-07-2009, 06:06 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