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 FormattedPhone;
StringVar AreaCode;
StringVar PrefixThree;
StringVar SuffixFour;
AreaCode:= Left({?Phone},3);
PrefixThree:= Mid({?Phone},4,3);
SuffixFour:= Right({?Phone},4);
FormattedPhone:= "(" & AreaCode & ") " & PrefixThree & "-" & SuffixFour;