Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do you make values from an expression appear only in subtotal rows?

I have two expression columns that are only useful for my subtotal and grand total rows. I need a way to suppress all the other values in these two columns.

Thank you for any suggestions!

1 Solution

Accepted Solutions
stabben23
Partner - Master
Partner - Master

Hi,

use something like that in textcoulor in your expression:

if(Dimensionality()=2, white())

//Stabben

View solution in original post

3 Replies
stabben23
Partner - Master
Partner - Master

Hi,

use something like that in textcoulor in your expression:

if(Dimensionality()=2, white())

//Stabben

Gysbert_Wassenaar

By using the dimensionality() function. See attached example. Note, if don't have any expressions that should show values at the detail level then you need to disable Suppress Zero-values or you will see no detail rows.


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you, that was exactly what I needed!