It looks like you're new here. Sign in or register to get started.
IF Rec.Field IN [Rec.Field::"First Value",Rec.Field::"Second Value"] THEN DoSomething;
IF Rec.Field IN ['ValueOne','ValueTwo'] THEN DoSomething;
albertodfa wrote: CurrReport.SHOWOUTPUT := NOT ("Testate Acquisti"."Pagare a - Nr. For." IN ); Do I have this education in a section, do you know that meaning has the parameter In? Thanks
Comments
For an option type field:
For a text field:
Etcetera, etcetera.
RIS Plus, LLC
Snapshot from "Navision Attain C/AL.pdf " link
regards
Bostjan
eg.
IF A IN [B,C..D,E] THEN
can be translated as
IF (A =
((A >= C) AND (A <= D)) OR
(A = E) THEN
As you can see, the IN-statement is easier to read
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!