i am attempting to set up a formula with the following if statement. I know that StimulSoft does not use the actual Words for "And" and "or" Can you please let me know which keyboard symbols are used in the place of "and" in the below statement.
_lcCustPn == "Internal" and rptInvoiceFormWM.CustPartNo ==""
?rptInvoiceFormWM.PartNO+" "+rptInvoiceFormWM.Rev
:_lcCustPn == "Internal" and rptInvoiceFormWM.CustPartNo !=""
?rptInvoiceFormWM.CustPartNo+" "+rptInvoiceFormWM.CustRev
:rptInvoiceFormWM.PartNO+" "+rptInvoiceFormWM.Rev
If Statements
Re: If Statements
Hello,
Please try to use the following operators:
&& - and
|| - or
https://msdn.microsoft.com/en-us/library/6a71f45d.aspx
Thank you.
Please try to use the following operators:
&& - and
|| - or
https://msdn.microsoft.com/en-us/library/6a71f45d.aspx
Thank you.
Re: If Statements
Thanks for the quick Response. This was exactly what I was looking for.
Re: If Statements
Hello,
Great! Thank you for letting us know about this.
Great! Thank you for letting us know about this.