What I have is a query that has a few fields but the only important one is the problem one. the products are all sorted by the job's so one job can have the same problem more then once. Now, I need to generate a table that has another column that says how many times it has had this problem so that I don't print out the same thing a few times. SO generally I want it to look like this:<br>Go from this:<br>Job Desc<br>10 Blah<br>10 Blah<br>10 Blah2<br>To this:<br>Job Desc Times<br>10 Blah 2<br>10 Blah2 1<br><br>thanks in advance.