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.
If Ubound(Split({Table.Field},'.')) = 4
Then Right('0000' + Split({Table.Field},'.')[1],4) + Right('0000' + Split({Table.Field},'.')[2],4) + Right('0000' + Split({Table.Field},'.')[3],4) + Right('0000' + Split({Table.Field},'.')[4],4)
Else
If Ubound(Split({Table.Field},'.')) = 3
Then Right('0000' + Split({Table.Field},'.')[1],4) + Right('0000' + Split({Table.Field},'.')[2],4) + Right('0000' + Split({Table.Field},'.')[3],4)
Else {Table.Field}
WhilePrintingRecords;
Local NumberVar S := UBound(Split({Table.Field},'.')); // Determine number of sections
Local NumberVar i; // Loop counter
Local StringVar O; // Output string
For i := 1 to S Do
O := O + Right(('0000' + Split({Table.Field},'.')[i]),4);
O