I need to create a pic chart based on two fields and I haven't been able to figure it out.
I have a field that shows the job number, Hours Completed, and hours remaining.
Here is my sql
Code:
SELECT [Job #] ,TimeCompleted,TimeRemaining FROM dbo_vw_ReleasedJobStatusTimeRemaining
When a user selects a job # I want to display a chart that shows a pie chart with one slice showing the timecompleted and the other showing the timeremaining.
I guess normally with a pie chart all the data comes from one field. In this case I have data in two fields so I'm not sure how to get the result I need.
Can someone please help me?
I'm using access 2010
Thanks