Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
P_Kale
Creator II
Creator II

Can we colour total and subtotal font in Pivote table

Hi ,

Is it possible to colour the total & sub-total in pivote table. Something like given in below excel.

Thanks in Advance

@sunny_talwar 

@swuehl 

@Anil_Babu_Samineni 

@marcus_sommer 

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer

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.

View solution in original post

3 Replies
marcus_sommer

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.

P_Kale
Creator II
Creator II
Author

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)))

 

P_Kale
Creator II
Creator II
Author

Hi I am able to achieve through below expression Thanks.

If(Dimensionality() = 0, RGB(0,0,225),
if(Dimensionality() =1 ,RGB(128,0,0)))