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;
stringvar array x;
stringvar v_lastname;
x := split({NameField}," ");
if ubound(x) = 4 then v_lastname := x[1] + " " + x[2]
else if ubound(x) = 3 and len(replace(x[3],".","")) > 1 then v_lastname := x[1] + " " + x[2]
else v_lastname := x[1];
v_lastname
whileprintingrecords;
stringvar array x;
stringvar v_firstname;
x := split({Sheet1_.Name}," ");
if ubound(x) = 4 then v_firstname := x[3]
else if ubound(x) = 3 and len(replace(x[3],".","")) > 1 then v_firstname := x[3]
else v_firstname := x[2];
v_firstname
whileprintingrecords;
stringvar array x;
stringvar v_middle;
x := split({Sheet1_.Name}," ");
if ubound(x) = 4 then v_middle := x[4]
else if ubound(x) = 3 and len(replace(x[3],".","")) > 1 then v_middle := ""
else if ubound(x) = 3 then v_middle := x[3]
else v_middle := "";
v_middle