""
FORMAT( Number-n , "" )
IF FIRST( RESULT , 2 ) = "0."
LAST( RESULT , LENGTH( RESULT ) - 1 )
END IF
Alternative:
"«Number-n»"
IF FIRST( RESULT , 2 ) = "0."
LAST( RESULT , LENGTH( RESULT ) - 1 )
END IF
This computation converts the number, Number-n, into a string, and then tests it to see whether it begins with "0.". If so, it returns only the portion of the string from the decimal to the end. Otherwise it returns the whole string. Note that the result is a Text value, not a Number value.