You should be able to drag the parameters from the Field Explorer, under the parameters node, into the Report Header. Drag each parameter that you want to see so that it will display the values selected.
Local NumberVar Counter;
Local StringVar Result;
Local NumberVar Array NumArray := {?Numbers};
UBound(NumArray);
For Counter := 1 To UBound(NumArray) Do
(
Result := Result + totext({?AccountNumber}[Counter]) + ", "
);
left(Result,len(result)-2)
Note that the above shows numerics being converted, the change this for strings, remove the totext()
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.