Hi,
I have created a Make Table Query to populate a new table with Count and Average functions from two other tables.
No problems there.
The issue is that the Average:[Percent] field is outputting 12+ decimal places.
I would like to limit it to 1.
I've tried a few options but to no avail.
Here's the SQL from the MT Query.
Grateful for any assistance.

SELECT [Results-BGS].School, [Results-BGS].Year, [Results-BGS].[Month ID], [Results-BGS].Level, [Results-BGS].[Subject LO], [Results-BGS].[Subject Description], [Results-BGS].Type, [Results-BGS].Syllabus, [Results-BGS].Attempt, [Results-BGS].Result, Count([Results-BGS].Result) AS [Total Result], Avg([Results-BGS].Percent) AS Average, Min([Results-BGS].Percent) AS Minimum, Max([Results-BGS].Percent) AS Maximum INTO [RESULTS-COMBINED]
FROM [Results-BGS]
GROUP BY [Results-BGS].School, [Results-BGS].Year, [Results-BGS].[Month ID], [Results-BGS].Level, [Results-BGS].[Subject LO], [Results-BGS].[Subject Description], [Results-BGS].Type, [Results-BGS].Syllabus, [Results-BGS].Attempt, [Results-BGS].Result
HAVING ((([Results-BGS].School)="BGS"))
ORDER BY [Results-BGS].Year, [Results-BGS].[Month ID], [Results-BGS].Level, [Results-BGS].[Subject LO], [Results-BGS].Type, [Results-BGS].Syllabus, [Results-BGS].Attempt, [Results-BGS].Result DESC;
I have created a Make Table Query to populate a new table with Count and Average functions from two other tables.
No problems there.
The issue is that the Average:[Percent] field is outputting 12+ decimal places.
I would like to limit it to 1.
I've tried a few options but to no avail.
Here's the SQL from the MT Query.
Grateful for any assistance.

SELECT [Results-BGS].School, [Results-BGS].Year, [Results-BGS].[Month ID], [Results-BGS].Level, [Results-BGS].[Subject LO], [Results-BGS].[Subject Description], [Results-BGS].Type, [Results-BGS].Syllabus, [Results-BGS].Attempt, [Results-BGS].Result, Count([Results-BGS].Result) AS [Total Result], Avg([Results-BGS].Percent) AS Average, Min([Results-BGS].Percent) AS Minimum, Max([Results-BGS].Percent) AS Maximum INTO [RESULTS-COMBINED]
FROM [Results-BGS]
GROUP BY [Results-BGS].School, [Results-BGS].Year, [Results-BGS].[Month ID], [Results-BGS].Level, [Results-BGS].[Subject LO], [Results-BGS].[Subject Description], [Results-BGS].Type, [Results-BGS].Syllabus, [Results-BGS].Attempt, [Results-BGS].Result
HAVING ((([Results-BGS].School)="BGS"))
ORDER BY [Results-BGS].Year, [Results-BGS].[Month ID], [Results-BGS].Level, [Results-BGS].[Subject LO], [Results-BGS].Type, [Results-BGS].Syllabus, [Results-BGS].Attempt, [Results-BGS].Result DESC;