Results 1 to 4 of 4
  1. #1
    spyldbrat is offline Advanced Beginner
    Windows XP Access 2007
    Join Date
    Jul 2015
    Posts
    73

    Chart/Graph Question


    I have a report that is broken into groups. I created a graph and was HOPING that it would create a create graph for each group. Instead it only created a graph using the first groupings data. Is it possible for it to create a graph for each grouping? Also, I have my groupings printing on separate pages. Is it possible for the graph to display on the respective groupings page

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,550
    graphs dont really work like reports, the graph data is in the graph,not the report.
    You could make form, in it a listbox of the Groups.
    The query would read the form and use the selected item in the listbox to show that group's data.
    The 'print' button would cycle thru the list, making a graph, 1 at a time , for each Group in the listbox.
    either print to printer or to PDF.

  3. #3
    June7's Avatar
    June7 is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,771
    I have dynamic graphs set with RowSource property as an SQL with a WHERE clause that references a value on the report. Examples:

    SELECT M, D, FD, ZD, ZDM FROM GraphProctor WHERE LabNum=[tbxLabNum];
    This graph displays in detail section so each record has its own graph.

    SELECT [DropNum], CumulativePenMM FROM [dcpfiledata] WHERE [HoleNum] = [Hole];
    This graph displays in the Hole group footer section.

    Notice that these are not CROSSTAB queries and the graph type used is XYScatter.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  4. #4
    spyldbrat is offline Advanced Beginner
    Windows XP Access 2007
    Join Date
    Jul 2015
    Posts
    73
    Where you have:

    SELECT M, D, FD, ZD, ZDM

    What does M, D, FD, ZD, ZDM represent? Are these what you what want filter by?

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

Similar Threads

  1. Graph/Chart in a report
    By f15e in forum Access
    Replies: 6
    Last Post: 10-01-2017, 09:12 PM
  2. Graph (Chart) - Set Color of Data Point with VBA
    By June7 in forum Programming
    Replies: 6
    Last Post: 10-18-2012, 03:14 PM
  3. Large Chart / Graph Issue
    By cc143most in forum Reports
    Replies: 4
    Last Post: 09-12-2012, 06:19 AM
  4. Making a graph/chart using DCount
    By Currancchs in forum Queries
    Replies: 10
    Last Post: 07-17-2012, 03:52 PM
  5. Chart/Graph
    By Tony McGuire in forum Access
    Replies: 0
    Last Post: 09-13-2009, 04:17 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