M
Mike
Hi Everyone!
I'm creating a chart based a table. This table contain data about where
students use computer. It can be one of 3 values: Home, School, or Both. The
column is in "text" data format.
However, this table only contains records with Home and Work as data entries
and no records that contain "Both". When I created the chart, the chart only
show Home and School on X axis. "Both" is missing.
i.e. I need the graph to show 25 on Home, 70 on School, 0 on Both. But
Access is not showing it.
Following is the SQL generated for my chart
SELECT StudentData.UseOfComputer, Count(*) AS [Students] FROM StudentData
WHERE StudentData.Classroom="A"
GROUP BY StudentData.UseOfComputer
ORDER BY StudentData.UseOfComputer;
Please help me out!
Thank you!
Mike
P.S. I'm using Access 2003
I'm creating a chart based a table. This table contain data about where
students use computer. It can be one of 3 values: Home, School, or Both. The
column is in "text" data format.
However, this table only contains records with Home and Work as data entries
and no records that contain "Both". When I created the chart, the chart only
show Home and School on X axis. "Both" is missing.
i.e. I need the graph to show 25 on Home, 70 on School, 0 on Both. But
Access is not showing it.
Following is the SQL generated for my chart
SELECT StudentData.UseOfComputer, Count(*) AS [Students] FROM StudentData
WHERE StudentData.Classroom="A"
GROUP BY StudentData.UseOfComputer
ORDER BY StudentData.UseOfComputer;
Please help me out!
Thank you!
Mike
P.S. I'm using Access 2003