Is it possible to do something like
Sort Sales by Cust_id Break-On Cust_Id Cust_name Total Sales_Amt DET-SUPP
and get the Cust_name to display in the total line that is produced for each customer.
Use "'V'" after the BREAK-ON COLUMNNAME.
World Leaders in all things RevSoft
Jeff:
Your Original:
Sort Sales by Cust_id Break-On Cust_Id Cust_name Total Sales_Amt DET-SUPP
Should be:
Sort Sales by Cust_id Break-On Cust_name "'LUUV'" Cust_name Total Sales_Amt DET-SUPP
The LUUV will suppress a double-line feed and Over/Underline the Totalling field. This will only work properly if your customer names are unique within the Cust_id sorted universe. If you just put a "'V'" option, only the Cust_name info will appear
HTH
Don Miller
C3 Inc.
Thanks Guys,
Will check that out today. Am trying to avoid writing a program for what should be a simple sub totaling report.