I am trying to format a decimal so that it will get displayed as so:
14.5 should get displayed as "14.50" 14.50 should get displayed as "14.50" 14.05 should get displayed as "14.05" 14.00 should get displayed as "14"
Is the possible with a single String Format, i.e. not using conditional formatting?
I've tried "0.##" (doesn't satisfy the first example) and "0.00" (doesn't satisfy the last example).
Thanks.