I am using CR 8.5 with SQL Server 2000 database. Here is what I am trying to get in the group summary.
*Current Month (CM)
Local Outbound Inbound
------- ------- --------
CM Tier 1: 000 000 000
CM Tier 2: 000 000 000
CM Tier 3: 000 000 000
------- ------- --------
CM Total: 000 000 000
------- ------- --------
YTD: 000 000 000
------- ------- --------
The Year to date (YTD) field will include CM total + YTD value for each category respectively ( i.e. Local, Outbound, Inbound).
I am using the following formula to get the CM Tier 1:
if {Participant_Move_in_Trans.Trans_Category} = "Local"
and
{Participant_Move_in_Trans.Tier_Level} = 1.00
then
1
else
I have summaized this field to get the count of all the transactions.The YTD information is saved in the {Archive_Participant_Move_in_Trans} table. I have created another formula to get this required result. After this I am doing a sum of the first formula and the second formula to get the YTD field. My problem is that when I place the second formula (to get YTD) information, I get all the records in the detail section. How can I suppress this information? Is there an easier way of getting this done.
All the help is appreciated.
Thanks,
Kchaudhry
*Current Month (CM)
Local Outbound Inbound
------- ------- --------
CM Tier 1: 000 000 000
CM Tier 2: 000 000 000
CM Tier 3: 000 000 000
------- ------- --------
CM Total: 000 000 000
------- ------- --------
YTD: 000 000 000
------- ------- --------
The Year to date (YTD) field will include CM total + YTD value for each category respectively ( i.e. Local, Outbound, Inbound).
I am using the following formula to get the CM Tier 1:
if {Participant_Move_in_Trans.Trans_Category} = "Local"
and
{Participant_Move_in_Trans.Tier_Level} = 1.00
then
1
else
I have summaized this field to get the count of all the transactions.The YTD information is saved in the {Archive_Participant_Move_in_Trans} table. I have created another formula to get this required result. After this I am doing a sum of the first formula and the second formula to get the YTD field. My problem is that when I place the second formula (to get YTD) information, I get all the records in the detail section. How can I suppress this information? Is there an easier way of getting this done.
All the help is appreciated.
Thanks,
Kchaudhry