Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
Is it possible to colour the total & sub-total in pivote table. Something like given in below excel.
Thanks in Advance
In general yes. In QlikView you may chose an appropriate design within the tab Design and/or using attribute-expressions - totals could be queried with dimensionality() - and/or the custom cell-format. I assume in Sense are similar features available.
In general yes. In QlikView you may chose an appropriate design within the tab Design and/or using attribute-expressions - totals could be queried with dimensionality() - and/or the custom cell-format. I assume in Sense are similar features available.
Thanks Marcus
Yes. I am able to achieve to colour Total Row. But unable to achieve to colour sub-total.
I am using below expression.
If(Dimensionality() = 0, RGB(0,0,225),
if(SecondaryDimensionality()=1,RGB(128,0,0)))
Hi I am able to achieve through below expression Thanks.
If(Dimensionality() = 0, RGB(0,0,225),
if(Dimensionality() =1 ,RGB(128,0,0)))