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

Filter Pane

I have a Pivot Table that I only want to display one description in a field.  I have tried a few things but I still have to select Data Entry to get it to work.  Is there a way to only display the one description upon opening the sheet?

=Match(([Department Desc]) = 'Data Entry',[Department Desc])

=If(([Department Desc]) = 'Data Entry',[Department Desc])

1 Solution

Accepted Solutions
OmarBenSalem

Suppose your measure is : sum(sales)

alter it as follow:

sum({<[Department Desc]) = {'Data Entry'}>}sales)

The result would be as follow:

table 1 : measure : Sum([Car sales])

table 2 : measure : Sum({<[OICA region]={'Africa'}>}[Car sales])

Capture.PNG

View solution in original post

1 Reply
OmarBenSalem

Suppose your measure is : sum(sales)

alter it as follow:

sum({<[Department Desc]) = {'Data Entry'}>}sales)

The result would be as follow:

table 1 : measure : Sum([Car sales])

table 2 : measure : Sum({<[OICA region]={'Africa'}>}[Car sales])

Capture.PNG