Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
WhilePrintingRecords;
Local NumberVar c := Ubound(Split({Table.Your_Field}, ', '));
Local NumberVar i;
Local StringVar X;
For i := 1 to c do
X := X + Split(Split({Table.Your_Field}, ', ')[i], '(') [1] + ', ' ;
X := Replace(X, ' , ', ', ');
X := Left(X, Len(X)-2)