Hello this is related to my other thread above.
Using Crystal XI R2
I have my group set up like this
if ({table.Summary} like "*summary1*" or {table.CTI} = "summary1")then "Summary1" else
if ({table.Summary} like "summary2" or {table.CTI} = "Summary2" )then "Summary2" else
if({Table.Summary} like"Summary3"or {table.CTI} = "Summary3")then "Summary3" else"unknown"
Now i want one more piece in the group which picks all the three summaries like
if (({table.Summary} like "*summary1*" or {table.CTI} = "summary1")or
({table.Summary} like "summary2" or {table.CTI} = "Summary2" )or
({Table.Summary} like"Summary3"or {table.CTI} = "Summary3")then "Total"
I hope iam clear.
Right now i have a manual crosstab with this group and totals at the bottom.
I have subreports at the group level,Everything was working great till now with the subreports set up at group level.But my totals are at the report footer so the subreport functionality won't work.
I can link the subreport same way i did to the group level But i'm trying to see if i can add the total in the group order so i don't have to have sweperate sub's for those.
Any ideas thank you.