Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Conditional Formatting for Totals column

Hi all,

As you can see in the image below I used conditional formatting to show all the values that low than 5% (I have two measures).

But, I want to use this condition only on the Totals column.

How do I do this?

My condition is:   if( [%_Re_Reviewed] < 0.05 , yellow())

Capture.PNG

4 Replies
Quy_Nguyen
Specialist
Specialist

Hi Itamar,

Use Dimensionality()=0 in the background condition.

Ex:

If(Dimensionality()=0,

If( [YourMeasure]  < 0.05 ,Yellow()))

Anonymous
Not applicable
Author

Sorry, it doesn't work.

cbushey1
Creator III
Creator III

Maybe your total line isnt dimension 0. Try adding a column of dimensionality() and see what appears for the totals row. Then adjust the formula Quy mentioned by this number and it should work fine.

dimensionality.png

Anonymous
Not applicable
Author

Thanks, it works!