View Single Post
  #4 (permalink)  
Old January 13th, 2009, 08:06 PM
kuznickic kuznickic is offline
Authorized User
Points: 192, Level: 3
Points: 192, Level: 3 Points: 192, Level: 3 Points: 192, Level: 3
Activity: 2%
Activity: 2% Activity: 2% Activity: 2%
 
Join Date: Feb 2005
Location: Honoulu, HI, USA.
Posts: 44
Thanks: 2
Thanked 0 Times in 0 Posts
Default

Thanks mmc,

I'll give that a go. I think the problem rests more with my understanding of how pie charts work than Access. I know VBA but never really had to create any kind of charting capability before. Charts for whatever reason confuse me. I can create a query and view the chart in PivotChart view in the query but I just can't seem to make it work when I go to the report and try to create a chart in design view. The query I am using is this
Code:
SELECT Sum(Abs([Complete])) AS Completed, Sum(IIf([Complete],0,1)) AS NotComplete, Count("*") AS Total
FROM tblDiscrepancies;
. I think too that the chart designer in Access is not that intuitive.

Thanks,
Chris
Reply With Quote