Not Equal 0.00 and Equal 0.00 code question

Stimulsoft Ultimate discussion
Post Reply
drp1994
Posts: 9
Joined: Wed Jun 04, 2014 7:32 pm

Not Equal 0.00 and Equal 0.00 code question

Post by drp1994 »

I have attempting to use the following if statement in StimulSoft but I am unable to get the <> 0.00 and = 0.00 to work properly. Can you please let me know what I need to change within the statement below?

rptInvoiceForm.TotalTaxExt<> 0.00 && rptInvoiceForm.FOREIGNTAX.ToString()="0"
? "Tax"
:rptInvoiceForm.FreightAmt <> 0.00
? "Freight Amt"
:rptInvoiceForm.TotalTaxExt = 0.00
? "TOTAL"
:rptInvoiceForm.TotalTaxExt<> 0.00 && rptInvoiceForm.FOREIGNTAX.ToString() = "1"
?"Freight Amt"
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

Re: Not Equal 0.00 and Equal 0.00 code question

Post by Jan »

Hello,

Please use following expression:

Code: Select all

rep != 0
or

Code: Select all

rep == 0
Let me known if you need additional help.

Thank you.
Post Reply