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;
numbervar x := ubound({?Localidad});
Stringvar MyOutput := "";
if x > 0 then
For x := 1 to ubound({?Localidad}) do(
MyOutput := MyOutput+totext({?Localidad}[x],0,"")+", "
);
MyOutput