Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a pivot table shown below:
What I need to do is have the Gross Margin @ FGS shown as a percent instead of like the other numbers. Would it be possible to do this????
Here's how I have the expression written:
if ( Measure<>'Gross Margin @ FGS',
sum({<FYEAR={$(vBenchYr)},QUARTER={'Q4'}>}(Value)), vGrossMargin)
So I set the vGrossMargin number format at the document properties level to show in percent but it has taken the form of the column which is fixed with no decimal places.
Is there a way to get only the last item as a percent???? I want it to show 53.4%
Num( (vGrossMargin)/100,'#,##0%')
i think you can use this :
if ( Measure<>'Gross Margin @ FGS',
sum({<FYEAR={$(vBenchYr)},QUARTER={'Q4'}>}(Value)),Num( (vGrossMargin),'#,##0%') )
I tried that & it doesn't seem to work.
Scratch previous reply. I had to go in and change the number format for the expression to expression default.
does it work ?
It does work now but I need it to say 53.4% and it is showing 5336.90%
Num( (vGrossMargin)/100,'#,##0%')
I did Num( (vGrossMargin)/100,0.0%') and that did it.
Thanks!!!
don't forget to mark your post as solved