Is it possible to format “floating point” numbers with up to two decimal places, but omit the decimal point when no decimal digits are present? The closest approach that I have found is format code 0.##;0 which gives me
3.83 as 3.83
0.00 as 0
72.00 as 72. [but what I want is 72]
0.60 as 0.6