Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Fquiroga95
Contributor II
Contributor II

Only visualize certain values of a dimension in a straight table

Hi, I have a dimension called Vendor, which has different values. I would like to not visualize "Others" in the Vendor column. So I created a calculated dimension:

=Aggr(ONLY({<Vendor=-{"Others"}>} Vendor),Vendor)

 

The problem is that is the column is displaying null values, even when I suppressed the null values in "presentation properties".

Fquiroga95_0-1662121594001.png

Fquiroga95_1-1662121864646.png

 

If I delete the original vendor column, is still displaying null values. 

 

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

On the Dimensions tab, check "Suppress When Value is Null"

rwunderlich_0-1662129975885.png

-Rob

View solution in original post

2 Replies
BrunPierre
Partner - Master
Partner - Master

How about the use of a calculated dimension and suppressing when the value is null or '-'. Probably...

=IF(not WildMatch(Vendor,'*Others*'),Vendor)

 

 

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

On the Dimensions tab, check "Suppress When Value is Null"

rwunderlich_0-1662129975885.png

-Rob