I have a chart that the the source code to it is the following:
SELECT [1Departmentsbyall].Department, Sum([1Departmentsbyall].SumOfAmountReimb) AS SumOfSumOfAmountReimb, [1Departmentsbyall].OrganizationID
FROM 1Departmentsbyall
GROUP BY [1Departmentsbyall].Department, [1Departmentsbyall].OrganizationID
HAVING (((Sum([1Departmentsbyall].SumOfAmountReimb))>2000));
I would like to specify to only pul the higest 8 department in the chart. right now, it may pull 20 or even more and the Pie does not look like a pie anymore....
SELECT [1Departmentsbyall].Department, Sum([1Departmentsbyall].SumOfAmountReimb) AS SumOfSumOfAmountReimb, [1Departmentsbyall].OrganizationID
FROM 1Departmentsbyall
GROUP BY [1Departmentsbyall].Department, [1Departmentsbyall].OrganizationID
HAVING (((Sum([1Departmentsbyall].SumOfAmountReimb))>2000));
I would like to specify to only pul the higest 8 department in the chart. right now, it may pull 20 or even more and the Pie does not look like a pie anymore....