Hi Guys
I want to display a Stacked column chart on a Form. The X axis should display all the managers names and Y axis will display "Number of reasons" and stacked bars will display "Name of the reasons for not signing the forms".
Please see attached the example of the graph I want on my form.
The query for the graph is as below:
But when I tried to create a graph on my form then it just shows line managers name on the X axis and numbers of reasons on Y axis but it doesn't show reasons names and bar stacks.
Can anyone please provide me the guidance on creating stacked column chart on access forms?
Very much appreciated .
Thanks
I want to display a Stacked column chart on a Form. The X axis should display all the managers names and Y axis will display "Number of reasons" and stacked bars will display "Name of the reasons for not signing the forms".
Please see attached the example of the graph I want on my form.
The query for the graph is as below:
Code:
SELECT qry_RMS_UnionReasons.[Staff Name], qry_RMS_UnionReasons.[1stRefuseReason], Sum(qry_RMS_UnionReasons.Times) AS SumOfTimes
FROM qry_RMS_UnionReasons
GROUP BY qry_RMS_UnionReasons.[Staff Name], qry_RMS_UnionReasons.[1stRefuseReason];
But when I tried to create a graph on my form then it just shows line managers name on the X axis and numbers of reasons on Y axis but it doesn't show reasons names and bar stacks.
Can anyone please provide me the guidance on creating stacked column chart on access forms?
Very much appreciated .
Thanks