Page 1 of 1

How is suppress GroupTotal depended on data?

Posted: Wed Sep 13, 2006 6:41 am
by MARIMUTHU K
Hi hi hi

We are using StiReport 1.6.1
desingned Total and Grand Total based on Data.

E.g

Name Account No. Payout Mechanism Transaction Amount
Advantage Fund
NA / NA NA E/Cheque Payment 21 536,905.92
Group Total 21 , 905.92
Grand Total 26 1,116,338.0

I want suppress Group Total depended on Table Data.

If (Sum(table1.Data)==table1.Data)
e.Value="";
else

e.Value=Sum(table1.Data);

Where is palced? or other way.

I have given to HighlightCondition, but Sum(data) is not allowed .

How do to?

Please provide Solution.


Thanks of Advance.


Regards,

How is suppress GroupTotal depended on data?

Posted: Wed Sep 13, 2006 7:30 am
by Edward
KMarimuthu wrote:Hi hi hi

We are using StiReport 1.6.1
desingned Total and Grand Total based on Data.

E.g

Name Account No. Payout Mechanism Transaction Amount
Advantage Fund
NA / NA NA E/Cheque Payment 21 536,905.92
Group Total 21 , 905.92
Grand Total 26 1,116,338.0

I want suppress Group Total depended on Table Data.

If (Sum(table1.Data)==table1.Data)
e.Value="";
else

e.Value=Sum(table1.Data);

Where is palced? or other way.

I have given to HighlightCondition, but Sum(data) is not allowed .

How do to?

Please provide Solution.


Thanks of Advance.


Regards,
You may use ternary operation. Please see http://forum.stimulsoft.com/Default.aspx?g=posts&t=6 for details.
Thank you.

How is suppress GroupTotal depended on data?

Posted: Thu Sep 14, 2006 3:55 am
by MARIMUTHU K
Yes,

The correct way is using ternery operator.

{Table1.CNT==Sum(Table1.CNT)?"":Sum(Table1.CNT).ToString()}

This way is correct But I want Suppress with Merge.




Thanks .



Regards,

How is suppress GroupTotal depended on data?

Posted: Thu Sep 14, 2006 4:06 am
by Edward
KMarimuthu wrote:Yes,

The correct way is using ternery operator.

{Table1.CNT==Sum(Table1.CNT)?"":Sum(Table1.CNT).ToString()}

This way is correct But I want Suppress with Merge.




Thanks .



Regards,
Yes we have this property. It is called ProcessingDuplicates. It allows to hide duplicated rows of data. Please see flash tutorial: http://www.stimulsoft.com/livedemos/Rep ... cates.html