Hi Curt, practical examples for suppressing duplicate rows that Brain mentioned are:
Database Side:
1. SELECT DISTINCT * FROM table_name;
2. SELECT column_name, column_name2
FROM (
SELECT column_name, column_name2
FROM table_name
WHERE column_name operator value
)
GROUP BY column_name, column_name2;
Crystal Report:
INSERT > INSERT GROUP
Crystal Report (Section Expert):
Right Click (Details Section) > Section Expert > Suppress (No Drill-Down) > Formula Editor >{Command.Doc No} = Previous({Command.Doc No})