Formatting decimal

0
I can't get a decimal in the format I want. For example 0.64 needs to be shown as 0.64%. I this line of code formatDecimal($TotalQuarterEfficiency/DecimalValue, '###,##%'). $TotalQuarterEfficiency/DecimalValue is the variable filled with 0.64. But the result I get is 64%. The default language of my app is Dutch.
asked
1 answers
1

Why not do this?

$TotalQuarterEfficiency/DecimalValue + ‘%’

answered