Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
Is there a way to have different number format on the same field like on the picture below.
What I want is PBT MARGIN and PAT MARGIN to have format in percent like '#.###%' and all other value to have format like '##.###'.
Should I solve this in script or I can manage this in chart.
Hope you can help me.
Hi,
Yes you can do,
In expression you can write
Num(youExpression,'#.###%')
Regards,
if(dimension='PAT MARGIN' or dimension='PBT Margin',
num([percentage expression,'#,###%'),
num(sum(Amount),'##.###'))
There´re two or more ways, PFA an example