I have a query that shows:
YearOpen County Countofnumber
The data is sorted by year and I created a report that shows the list of counties grouped by year (one year on each page). I inserted a chart into the YearOpen footer, but I only want the chart to show one year on each page; right now it shows all years.
This is my row source:
TRANSFORM Sum([CountOfnumber]) AS [SumOfCountOfnumber] SELECT [Open Year] FROM [trw Migrant Cases Opened - County] GROUP BY [Open Year] PIVOT [case_county];
If I link the master/child fields, I get nothing and if I leave them blank I get all years in the chart.
Is there any way I can group the chart to show only one year on each page?
YearOpen County Countofnumber
The data is sorted by year and I created a report that shows the list of counties grouped by year (one year on each page). I inserted a chart into the YearOpen footer, but I only want the chart to show one year on each page; right now it shows all years.
This is my row source:
TRANSFORM Sum([CountOfnumber]) AS [SumOfCountOfnumber] SELECT [Open Year] FROM [trw Migrant Cases Opened - County] GROUP BY [Open Year] PIVOT [case_county];
If I link the master/child fields, I get nothing and if I leave them blank I get all years in the chart.
Is there any way I can group the chart to show only one year on each page?