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

How to get the mentioned value in table ?

Is it possible to ommit the line with yellow color.Capture.PNG

How can I show in the table on category_of_sales='Unprocessed'.

category_of_sales is dimension.

1 Solution

Accepted Solutions
sunny_talwar

May be use a calculated dimension:

If(category_of_sales  = 'Unprocessed', category_of_sales)

and then check the 'Suppress When Value Is Null' on the dimension tab of the object properties

View solution in original post

2 Replies
sunny_talwar

May be use a calculated dimension:

If(category_of_sales  = 'Unprocessed', category_of_sales)

and then check the 'Suppress When Value Is Null' on the dimension tab of the object properties

Anonymous
Not applicable

you can define a calculated dimension

if (category_of_sales<>'Processed'), category_of_sales)

or use set Analysis in Expression

{<category_of_sales-={'Processed'}>}