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.
Local StringVar TempStr := ToText({Orders.Order Amount}, "####.0000") ;
If TempStr[-1] <> '0' then
TempStr
Else If TempStr[-2] <> '0' then
TempStr[1 to -2]
Else If TempStr[-3] <> '0' then
TempStr[1 to -3]
Else If TempStr[-4] <> '0' then
TempStr[1 to -4]
Else
TempStr[1 to 4]