Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
BouwerVa
Contributor III
Contributor III

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 III
Contributor III
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