floydpepper
Technical User
Ladies and Gents,
I currently hav a chart that tracks the names of classes completed per employee name. I have a chart report that displays this in bar chart format, with class names along the x-axis and the count of these classes (data indicating employees have taken the class) along the y-axis. Here is the underlying Row Source:
SELECT Null,Count([Tbl Main Training Schedule].Portal) AS Portal, Count([Tbl Main Training Schedule].[Architecture 101]) AS [Architecture 101], Count([Tbl Main Training Schedule].JCIDS) AS JCIDS, Count([Tbl Main Training Schedule].POPKIN) AS POPKIN, Count([Tbl Main Training Schedule].[AARMS/CADIE]) AS [AARMS/CADIE], Count([Tbl Main Training Schedule].BONAPART) AS BONAPART, Count([Tbl Main Training Schedule].UML) AS UML, Count([Tbl Main Training Schedule].[AFIT SYS 183 (On-Line)]) AS [AFIT SYS 183 (On-Line)], Count([Tbl Main Training Schedule].[AFIT SYS 283]) AS [AFIT SYS 283], Count([Tbl Main Training Schedule].[AFIT SENG 540-NC]) AS [AFIT SENG 540-NC], Count([Tbl Main Training Schedule].[AFECA 503 Short]) AS [AFECA 503 Short], Count([Tbl Main Training Schedule].[AFCEA 503]) AS [AFCEA 503], Count([Tbl Main Training Schedule].[AFCEA 504]) AS [AFCEA 504], Count([Tbl Main Training Schedule].[AFCEA 505]) AS [AFCEA 505], Count([Tbl Main Training Schedule].[ODU/VMASC]) AS [ODU/VMASC], Count([Tbl Main Training Schedule].[Rational (Technical)]) AS [Rational (Technical)], Count([Tbl Main Training Schedule].MCSD) AS MCSD FROM [Tbl Main Training Schedule];
I want to have the total number of employees (97 currently, but subject to change) to be calculated and displayed as a line across the bar chart for a quick visual reference (to show how many of the total have taken the class in question).
Can anyone help me with this?
Thank you in advance.
FloydPepper
I currently hav a chart that tracks the names of classes completed per employee name. I have a chart report that displays this in bar chart format, with class names along the x-axis and the count of these classes (data indicating employees have taken the class) along the y-axis. Here is the underlying Row Source:
SELECT Null,Count([Tbl Main Training Schedule].Portal) AS Portal, Count([Tbl Main Training Schedule].[Architecture 101]) AS [Architecture 101], Count([Tbl Main Training Schedule].JCIDS) AS JCIDS, Count([Tbl Main Training Schedule].POPKIN) AS POPKIN, Count([Tbl Main Training Schedule].[AARMS/CADIE]) AS [AARMS/CADIE], Count([Tbl Main Training Schedule].BONAPART) AS BONAPART, Count([Tbl Main Training Schedule].UML) AS UML, Count([Tbl Main Training Schedule].[AFIT SYS 183 (On-Line)]) AS [AFIT SYS 183 (On-Line)], Count([Tbl Main Training Schedule].[AFIT SYS 283]) AS [AFIT SYS 283], Count([Tbl Main Training Schedule].[AFIT SENG 540-NC]) AS [AFIT SENG 540-NC], Count([Tbl Main Training Schedule].[AFECA 503 Short]) AS [AFECA 503 Short], Count([Tbl Main Training Schedule].[AFCEA 503]) AS [AFCEA 503], Count([Tbl Main Training Schedule].[AFCEA 504]) AS [AFCEA 504], Count([Tbl Main Training Schedule].[AFCEA 505]) AS [AFCEA 505], Count([Tbl Main Training Schedule].[ODU/VMASC]) AS [ODU/VMASC], Count([Tbl Main Training Schedule].[Rational (Technical)]) AS [Rational (Technical)], Count([Tbl Main Training Schedule].MCSD) AS MCSD FROM [Tbl Main Training Schedule];
I want to have the total number of employees (97 currently, but subject to change) to be calculated and displayed as a line across the bar chart for a quick visual reference (to show how many of the total have taken the class in question).
Can anyone help me with this?
Thank you in advance.
FloydPepper