I have two groups in my report that are based off formulas. I also have a parameter that shows details or not. Is there a way to not group on group one if they choose not to see details? I know I can supress it but it still breaks it out by date, but in my summary (no detail) I just want to see the group by (?GROUP).... Below are my group formulas
Does this make sense?
group1-
IF {?DATE}='E' THEN
{gm_rpt_AdjustmentWriteOff;1.ENTRYDATE}
ELSE
IF {?DATE}='P' THEN
{gm_rpt_AdjustmentWriteOff;1.PAYDATE}
group2
IF {?GROUP} = 'R' THEN
{gm_rpt_AdjustmentWriteOff;1.RDOC}
ELSE
IF {?GROUP} = 'P' THEN
{gm_rpt_AdjustmentWriteOff;1.PROV}
ELSE
if {?GROUP} = 'F' THEN
{gm_rpt_AdjustmentWriteOff;1.FACILITY}
ELSE
IF {?GROUP} = 'N' THEN
'ALL'