using crystal 10 and sql db
i have a 3 step index in place for report and want to add an additional group index for group3.
*My goal is to show all groups printed in the index(s)*
Current working index:
//index 1 placed in group footer 2
WhilePrintingRecords;
StringVar GroupName;
StringVar PageNum;
if InStr (GroupName, {IC_SUBMANUFACTURER.LOOKUP}) = 0 then(GroupName:= GroupName + {IC_SUBMANUFACTURER.LOOKUP} + chr(13);
PageNum:= PageNum + ".........." + ToText(PageNumber,0) + chr(13));
//index2 placed in report footer
WhilePrintingRecords;
StringVar GroupName
//index3 placed next to index2 in report footer
WhilePrintingRecords;
StringVar PageNum
i have a 3 step index in place for report and want to add an additional group index for group3.
*My goal is to show all groups printed in the index(s)*
Current working index:
//index 1 placed in group footer 2
WhilePrintingRecords;
StringVar GroupName;
StringVar PageNum;
if InStr (GroupName, {IC_SUBMANUFACTURER.LOOKUP}) = 0 then(GroupName:= GroupName + {IC_SUBMANUFACTURER.LOOKUP} + chr(13);
PageNum:= PageNum + ".........." + ToText(PageNumber,0) + chr(13));
//index2 placed in report footer
WhilePrintingRecords;
StringVar GroupName
//index3 placed next to index2 in report footer
WhilePrintingRecords;
StringVar PageNum