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 isnumeric({table.string}) then
If Truncate(tonumber({table.string})=
tonumber({table.string})
Then
totext(tonumber({table.string}),0)
else
totext(tonumber({table.string}),2)
Else
{table.string}
if isnumeric({table.string}) then
If Truncate(tonumber({table.string})=
tonumber({table.string})[COLOR=green]// Is an integer so no decimals[/color]
Then
totext(tonumber({table.string}),0)
else [COLOR=green] // Is Not an integer[/color]
If Truncate(tonumber({table.string}) < 0
then
totext(tonumber({table.string}))[COLOR=green]// leave the number - show all decimals[/color]
else
totext(tonumber({table.string}),0)[COLOR=green]//> 0 round/truncate - if want decimals replace 0 with # wanted[/color]
Else
{table.string}
[profile]
[COLOR=blue]
To Paraphrase:"The Help you get is proportional to the Help you give.."
[/color]