This example shows the usage and variants for the FORMAT property.
Suppose that you have the value X= 32763.182732
Formatting the value with the GENERAL format, 12 digits of precision and a 4 digits mantissa: X = 32763.182732
Formatting the value with the EXPONENT format, 12 digits of precision and a 4 digits mantissa: X = 3.27631827320E+0004
Formatting the value with the FIXED format, 12 digits of precision and a 4 digits mantissa: X = 32763.1827
Formatting the value with the MONEY format, 12 digits of precision and a 2 digits mantissa: X = $32,763.18
Formatting the value with the NUMBER format, 12 digits of precision and a 4 digits mantissa: X = 32,763.1827
Formatting the value with the PERCENT format, 12 digits of precision and no mantissa: X = 3,276,318 %