Results 1 to 4 of 4
  1. #1
    beto is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Aug 2016
    Posts
    2

    how to chart multiple series from same record in a single table

    Hello everyone,

    I'm quite a beginner and can't manage to solve this.

    In a table called Audiometry I have diffrent series of fields to enter hearing threshold. The series are the thresholds obtained by different means: air conductin, bone conducting...
    Ex. AC500, AC1000, AC2000.... BC500,BC1000, BC2000... An so on.

    I managed to get a chart that shows me the values of a single series (air conducting thresholds) for a single record (audiometry).



    I can't manage to show, in the same chart, the values of the other series (bone conducting or others).

    Any help would be much apreciated,

    Beto

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,524
    Add all values to the table, AC, BC, etc.
    then open chart. It should see the change in series.

  3. #3
    beto is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Aug 2016
    Posts
    2
    I tried this but the chart does not know which fileds and values correspond to each series. It just makes a lng series with all of them.
    How do I tell the chart whcich ones are series 1 and which ones are for serie 2

  4. #4
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    how are you storing your data, I suspect this is non-normalized data, you may have to use a union query to make your data appear normalized then graph it.

    i.e.
    Code:
    SELECT "Bone Conducting" as Desc, BC500 as [500 Range], BC1000 as [1000 Range], BC2000 as [2000 Range] FROM tblTestResults
    UNION ALL
    SELECT "Air Conducting" as Desc, AC500 as [500 Range], AC1000 as [1000 Range], AC2000 as [2000 Range] FROM tblTestResults
    of course you'd have to also include a criteria for the client.

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

Similar Threads

  1. Chart with Multiple Series from Query
    By crimedog in forum Access
    Replies: 1
    Last Post: 09-01-2015, 12:38 PM
  2. Replies: 3
    Last Post: 08-02-2015, 12:42 AM
  3. Pivot chart legend series name won't change
    By BCJourney in forum Forms
    Replies: 5
    Last Post: 12-05-2013, 07:48 AM
  4. Replies: 4
    Last Post: 07-29-2012, 04:38 PM
  5. Replies: 4
    Last Post: 03-04-2012, 08:59 PM

Tags for this Thread

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