when client buy a ERP product
and client use report.design in runtime to edit report
Does the report has watermark "DEMO" ?
another question
in expression
it is work
{IIF(CS230.SumSaleAMT!=0,(CS230.Profit/CS230.SumSaleAMT)*100,0)}
but it is not work
{IIF(Sum(CS230.SumSaleAMT) != System.Convert.ToDecimal(0.00) ,(Sum(CS230.Profit)/Sum(CS230.SumSaleAMT)) * 100,0)}
the error message told me,I try to divide by 0
how can i do?
thanks a lot
a question for client use design to edit report
-
- Posts: 68
- Joined: Tue Feb 09, 2010 3:16 am
- Location: Taiwan
a question for client use design to edit report
Hello,
Thank you.
No, it does not.when client buy a ERP product
and client use report.design in runtime to edit report
Does the report has watermark "DEMO" ?
Try following:but it is not work
{IIF(Sum(CS230.SumSaleAMT) != System.Convert.ToDecimal(0.00) ,(Sum(CS230.Profit)/Sum(CS230.SumSaleAMT)) * 100,0)}
the error message told me,I try to divide by 0
Code: Select all
{Sum(CS230.SumSaleAMT) != 0d ? (Sum(CS230.Profit)/Sum(CS230.SumSaleAMT)) * 100,0) : 0}