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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
jayati_shrivast
Contributor III
Contributor III

How to exclude certain records from appearing in the straight table.

Hi all,

I have a straight table with column names, i need to exclude  certain names from appearing in the staright table, how can i do that??

 

1 Solution

Accepted Solutions
vardhancse
Specialist III
Specialist III

Hi,

Using calculated dimension we can able to achieve your expected output.

aggr(only({<Employer-={'A','B','C'}>} Employer),Employer)

or if you prefer "if"

aggr(if(match(Employer,'A','B','C')=0, Employer),Employer)

In any case, check "suppress when value is null"

View solution in original post

2 Replies
vardhancse
Specialist III
Specialist III

Hi,

Using calculated dimension we can able to achieve your expected output.

aggr(only({<Employer-={'A','B','C'}>} Employer),Employer)

or if you prefer "if"

aggr(if(match(Employer,'A','B','C')=0, Employer),Employer)

In any case, check "suppress when value is null"

agni_gold
Specialist III
Specialist III

could you please explain more ?