Hello,
I have a report with a supression formula:
{OEORDD.QTYORDERED}=0;
I would also like to add some statements and executed only if the above is true.
I'm assuming I would need something similar to:
When I check the formula I get an error indicating that the result must be a boolean.
Could someone please correct my code.
Thank you.
If at first you don't succeed, then sky diving wasn't meant for you!
I have a report with a supression formula:
{OEORDD.QTYORDERED}=0;
I would also like to add some statements and executed only if the above is true.
I'm assuming I would need something similar to:
Code:
{OEORDD.QTYORDERED}=0;
If {OEORDD.QTYORDERED}=0 Then
WhilePrintingRecords;
NumberVar recNum;
recNum:=recNum-1;
When I check the formula I get an error indicating that the result must be a boolean.
Could someone please correct my code.
Thank you.
If at first you don't succeed, then sky diving wasn't meant for you!