I'm trying to run a report showing two tables/lists from one run of SQL and I'm not sure whether this is possible or the correct procedure to use. I would appreciate any help. SQL Select column1, column2, count(1) as nr_of_records from table group by column1, column 2 I would like one report to show column1 and sum(nr_of_records) and the other to show column2 and sum(nr_of_records) Can I sum all the records and display column1 nr_of_records column2 15/06/2009 2 books 12 16/06/2009 6 postcards 3 17/06/2009 4 newspapers 13 18/06/2009 8 Total 28 19/06/2009 1 20/06/2009 3 21/06/2009 4 Total 28 I can run two seperate SQL statements and subreports but this would not be very efficient Hope someone can help Chris