Hi All,
I am using CR 10, Oracle 11g.
I would like to get a data field from the table but it doesn't seem working. User is allow to select more than 1 record to print at the report.
Here is my formula:
numbervar i;
numbervar cnt := recordnumber;
stringvar str;
for i := 1 to cnt do
(
if not isnull({SALES_QUOTATIONS.REMARK}) then
(
str := {SALES_QUOTATIONS.REMARK};
exit for;
)
);
str
The field Remark not necessary will have data but if 1 of the records is having data for this field, it has to show in the report.
Thanks in advanced for any help.
I am using CR 10, Oracle 11g.
I would like to get a data field from the table but it doesn't seem working. User is allow to select more than 1 record to print at the report.
Here is my formula:
numbervar i;
numbervar cnt := recordnumber;
stringvar str;
for i := 1 to cnt do
(
if not isnull({SALES_QUOTATIONS.REMARK}) then
(
str := {SALES_QUOTATIONS.REMARK};
exit for;
)
);
str
The field Remark not necessary will have data but if 1 of the records is having data for this field, it has to show in the report.
Thanks in advanced for any help.