Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
BouwerVa
Contributor II
Contributor II

Conditional Visibility

Hi

I created a Pivot Table.

But I only want to show the Rows in red.

Any Suggestions:

Loan @.png

 

Labels (1)
1 Solution

Accepted Solutions
JordyWegman
Partner - Master
Partner - Master

Hi,

Use the conditional coloring code also for your measures. But instead or returning LightRed(), return null(). Then you should go to Data Handling in your pivot table properties and disable include null values.

Jordy

Climber

Work smarter, not harder

View solution in original post

2 Replies
JordyWegman
Partner - Master
Partner - Master

Hi,

Use the conditional coloring code also for your measures. But instead or returning LightRed(), return null(). Then you should go to Data Handling in your pivot table properties and disable include null values.

Jordy

Climber

Work smarter, not harder
BouwerVa
Contributor II
Contributor II
Author

It Worked somewhat but it still will not hide the null values.

Capture.JPG

 

  • "Include Null Values" is unticked in all Dimensions
  • My Loan at's Formula : 
    • if(sum(if(TTYPE ='Lo',1)) > 3, sum(if(TTYPE ='Lo',1)), Null())
  • My Loans Granted Formula:
    • if(sum(if(TTYPE ='Lo',1)) > 3, sum(if(TTYPE = 'Lo', CAPITAL)), Null())

Not sure what I'm doing wrong