Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to filter a column

Hi All,

I have one field named 'F/I' whose values are F,I

Now I put it into Table dimension, I don't want to show I in this dimension, how to filter it?

F or I.JPG

3 Replies
neelamsaroha157
Specialist II
Specialist II

May be you can filter it out in your expression -

Something like -

Sum({<[F/I] = {'F'}>}YourMeasureField)

vishsaggi
Champion III
Champion III

Or you can try like in your calculated dimension

= Aggr(IF([F/I] = 'F', [F/I]), [F/I])

pooja_prabhu_n
Creator III
Creator III

Hi,

try this in calculated dimension and check suppress null value

IF([F/I] = 'F', [F/I])


Thanks,

Pooja