Connecting Tech Pros Worldwide Help | Site Map

Two X Axis in Access

  #1  
Old November 13th, 2006, 08:25 PM
Taylor
Guest
 
Posts: n/a
Hello,

I have the following select statement:

SELECT InspectionGraph_GetData_SelQry.month,
InspectionGraph_GetData_SelQry.[Inpsection Type],
Sum(InspectionGraph_GetData_SelQry.[0-10 Days]) AS [SumOf0-10 Days],
Sum(InspectionGraph_GetData_SelQry.[11 - 15 Days]) AS [SumOf11 - 15
Days], Sum(InspectionGraph_GetData_SelQry.[16-20 Days]) AS [SumOf16-20
Days], Sum(InspectionGraph_GetData_SelQry.[21-30 Days]) AS [SumOf21-30
Days], Sum(InspectionGraph_GetData_SelQry.[Over 30 Days]) AS [SumOfOver
30 Days]
FROM InspectionGraph_GetData_SelQry
GROUP BY InspectionGraph_GetData_SelQry.month,
InspectionGraph_GetData_SelQry.[Inpsection Type];

What I want to do is have it chart a stacked bar chart. Unfortunately
I have two values that I would like in the x axis: Month and
Inspection Type.

Can anyone tell me how I can chart two values on the x axis?

Thank you for your help!

  #2  
Old November 14th, 2006, 12:45 PM
Tim Marshall
Guest
 
Posts: n/a

re: Two X Axis in Access


Taylor wrote:
Quote:
What I want to do is have it chart a stacked bar chart. Unfortunately
I have two values that I would like in the x axis: Month and
Inspection Type.
>
Can anyone tell me how I can chart two values on the x axis?
Use a series.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me
  #3  
Old November 21st, 2006, 03:35 PM
Taylor
Guest
 
Posts: n/a

re: Two X Axis in Access


I am not sure what you mean by use a series? Can you provide
additional information?

Thanks for your help!

Tim Marshall wrote:
Quote:
Taylor wrote:
>
Quote:
What I want to do is have it chart a stacked bar chart. Unfortunately
I have two values that I would like in the x axis: Month and
Inspection Type.

Can anyone tell me how I can chart two values on the x axis?
>
Use a series.
>
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Be Careful, Big Bird!" - Ditto "TIM-MAY!!" - Me
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Behaviour of AXIS (with Spring and Java) in response to bad webservice calls TraceyAnnison answers 0 July 13th, 2007 10:28 AM
Binary I/O in Javascript Patient Guy answers 26 December 10th, 2005 04:15 AM
Graph problems - axis scaling & PDF output borekfm@pacbell.net answers 2 November 13th, 2005 08:40 AM
Need help to do data and averages in the one graph in A97. Jeff Blee answers 2 November 12th, 2005 02:10 PM