I want to print text based on the detail rown number. For example:
whileprintingrecords;
numbervar x;
x:=x+1
if x = 1 then "test1";
if x = 2 then "test2";
if x = 3 then "test3"
The only thing that prints is "test3". What am I doing wrong?
i
I want to print text based on the detail rown number. For example:
whileprintingrecords;
numbervar x;
x:=x+1
if x = 1 then "test1";
if x = 2 then "test2";
if x = 3 then "test3"
The only thing that prints is "test3". What am I doing wrong?
i