How do you always display percentages with one decimal point

I understand how to format a number to 1 decimal point, but it is display 10.0% as 10%.

My table ends up looking weird as I have a column with some numbers that have a figure after the decimal point and others that don’t, e.g.

10%
11.6%
19.3%
16%
15.2%

What I need is:

10.0%
11.6%
19.3%
16.0%
15.2%

Looked at help docs and can’t see how to force the displayed number to one decimal point even if it is a 0 after the decimal point.

This topic was automatically closed after 70 days. New replies are no longer allowed.