getting rid of trailing zeroes
How can I use the numberformat property as such:
1.000 becomes 100%
0.547 becomes 54.7%
i currently have .numberformat = "0.#%", which gives
1.000 - 100.% (dangling decimal point)
0.547 - 54.7% (correct)
..numberformat = "0.0%" gives
1.000 - 100.0% (dangling zero)
0.547 - 54.7% (correct)
wazooli
|