pillphil wrote: » Edit: Not sure if you have two or three columns in your table? in your query, click the down arrow on the view button, select SQL view Assuming your query looks like SELECT DISTINCTROW Table1.code, Sum(Table1.quant) AS [Sum Of quant] FROM Table1 GROUP BY Table1.code; Change it to SELECT DISTINCTROW LEFT(Table1.code, 1), Sum(Table1.quant) AS [Sum Of quant] FROM Table1 GROUP BY LEFT(Table1.code, 1);
pillphil wrote: » I'm not too familar with access tbh, but i you should be able to create a report from that query. or use the report wizard if you want them all on the one page