Hello everyone, my first post here. I am pretty intermediate with access but generally only use it for queries to create reports in excel. This is my first time working with charts inside of an access report. I have a single table with various fields I would like to create numerous line charts. I created a group by the data field I would like the various reports created by and created the chart in the group header to no avail. I only get one blank chart with only the title, not the duplicated charts with data.
Here is a sample of the table fields. I am trying to get various line charts showing average days for each month by Area
Ex.
AREA Month Year Financial1 Financial2 Financial3 Financial4 Average Days
PPS 01 2014 xxx xxx xxx xxx 8
PPS 02 2014 xxx xxx xxx xxx 6.5
PPS 03 2014 xxx xxx xxx xxx 11
XYZ 01 2014 xxx xxx xxx xxx 9
XYZ 02 2014 xxx xxx xxx xxx 13
QRS 01 2014 xxx xxx xxx xxx 13
I have both the master/child link set to area.
TRANSFORM Sum[Average Days] as SUM[Average Days] SELECT [Month] FROM [Sheet1] GROUP BY [Month] Pivot [AREA];
Any help or insight would be great as I not a pro at these charts. Just not sure why it is not working!