I inherited a CR 8.5 Report, and I am definitely a newbie. The report has three groups: 1 by contact, 1 by zip code, and 1 by account mgr. Each acct mgr has certain zip codes within which the contacts fall.
Currently, the report counts how many times a referral was made by each contact each month. All of this is done in formulas (which I am unable to sort or group by).The code for the select expert is below. I've tried to do sort by group, but it greyed out. I know I need a summary on a group field, but I've tried creating one in several places and it still is not showing up (Top Sort is greyed out still).
Other data fields: LASTDATE (Used in year formulas), CONTACT
I've also created a running total field (on CONTSUPREF) changing when the CONTACT changes.
Crystal Reports 8.5 primarily using xBase files.
Currently, the report counts how many times a referral was made by each contact each month. All of this is done in formulas (which I am unable to sort or group by).The code for the select expert is below. I've tried to do sort by group, but it greyed out. I know I need a summary on a group field, but I've tried creating one in several places and it still is not showing up (Top Sort is greyed out still).
Code:
{ContSupp.RECTYPE} = "R" and
{ContSupp.CONTSUPREF} = "Physician - Prescribing" and
{@PrescriptionYear} = {@CurrentYear} and
not ({Contact1.KEY2} startswith "EU")
Other data fields: LASTDATE (Used in year formulas), CONTACT
I've also created a running total field (on CONTSUPREF) changing when the CONTACT changes.
Crystal Reports 8.5 primarily using xBase files.