Hi
I have the below code . I want If qty = 0 then only record should be entered in DataItem. If condition is false then it should not add record in Integer DataItem . Current if condition is not met even then record is added in Integer DataItem with 0 Values.
IF (Bales = 0) AND (Qty = 0) THEN BEGIN
NOQ[1] := NO[1];
NOQ[2] := NO[2];
NOQ[3] := NO[3];
NOQ[4] := NO[4];
END;
*This post is locked for comments