Hi all,
I need to display (15 %) and not -15% on the report but Stimulsoft has only -n% -n % and -%n formats available.
is there any way i can display my data as ( n %) for negative values? note on retaining 2-decimal places display and the grouping for comma-separation.
Would really appreciate any help. Thanks!
Negative Pattern for Percentage Format
Negative Pattern for Percentage Format
Hello,
Please use following expression:
{datasource.value < 0 ? "(" + datasource.value + " % )" : datasource.value + " %" }
Thank you.
Please use following expression:
{datasource.value < 0 ? "(" + datasource.value + " % )" : datasource.value + " %" }
Thank you.