Ok, here we go again! I have a report that has the following pieces of data. Name, key, sn, job, desc, cost<br><br>I'll give you some typical data<br>John Doe 12 001 5050 blah 20.00<br>John Doe 12 001 5050 blah1 30.00<br>John Doe 12 001 5050 blah2 40.00<br>John Doe 13 002 5051 blah4 28.00<br>John Doe 13 002 5051 blah5 40.00<br>John Doe 13 002 5051 blah6 45.00<br>John Doe 13 002 5051 blah7 67.00<br><br>There are tones of names that are different, but inside each name it looks roughly like this.<br>That is how the data is in the tables, I know that everything is the same but it's a warrenty report and the key, sn, and job are the same because it is referring to one machine while the work completed on it is the descriptions and cost is the cost. What I want is it to look like this:<br>John Doe <br> 12 <br>001 5050 blah 20.00<br>001 5050 blah1 30.00<br>001 5050 blah2 40.00<br> Total 90.00<br> 13<br>002 5051 blah4 10.00<br>002 5051 blah5 40.00<br>002 5051 blah6 50.00<br>002 5051 blah7 15.00<br> Total 115.00<br>Next name<br> Next Key<br>etc<br><br>I've tried to do it with the wizard, but all it does is display the name, then the key and then the total of all the details, but it doesn't list them.<br>Thanks in advance