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: 
Rsaiq
Creator
Creator

Help in removing values while searching on table

Hi,

I created an measure by excluding some values and now i dont want to see that excluded values in the search icon in the straight table.

 

My table is like below

Department Code Amount
Sale AB 200
Sale BA 100
Finance XY 300
Finance YX 400

 

I created below measure to show rows only with Code=AB,XY :
if(Code='AB' or Code='XY',Amount)

Now i dont want to show excluded code(BA,YX) in the front end :

Rsaiq_0-1695220160195.png

Could you please assist me how can i hide the values from front end.

Thanks in advance

 

Labels (3)
2 Replies
justISO
Specialist
Specialist

Hi, why not to use the same technique you done with amount?: if(Code='AB' or Code='XY', Code)

Additionally you can convert this new Code to Master Item, to prevent show expression when filtering.

Tanish
Partner - Creator
Partner - Creator

Hi @Rsaiq ,

Use this formula in the filter

=Pick(Match (Code , 'AB' , 'XY'), 'AB' , 'XY' )

 

Regards,

Tanish