I have a table that shows \"DONE\" and \"REMAIN\" for each \"AREA\" like below:
AREA DONE REMAIN TOTAL
AREA1 100 200 300
AREA2
Follow the below link:
A simple way to use pie chart in ms access I tried with the
SELECT status, Count(status) AS count FROM Table1 group by status;
Query in Row source of pie chart properties.
The first column will display as a label of the pie chart and 2nd column will display the count.
http://www.worldbestlearningcenter.com/index_files/Access-vba-piechart.htm#