My table consists of part_id, case_number, cal_dt, counselor,ending_balance, name, prty_sts. One participant (part_id) may have several records with different case numbers. I want a report that gives all cause numbers for each participant. The report should also include the counselor, ending_balance, cal_dt, name and prty_sts, but this information is the same for each record for each participant, so it should only be included once on the report for each participant. I'm looking for something like this: For each participant, list all case numbers and the cal_dt, counselor, ending_balance, name, prty_sts. Group by part_id.