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

Don't show hidden data in listbox

At first I had hidden the type= MTN CMK using code : =If(WildMatch(Type,'ME','MTN','NORMAL','TEST ME','TEST CONFIRM'),Type)
Result :
Suchanan_3-1670042984958.png

But in the table still shows the data that type = MTN CMK
Suchanan_0-1670043066525.pngSuchanan_1-1670043111105.png
Want to provide information that Type= MTN CMK does not show any information.

Result:

Suchanan_4-1670043372570.png
Display all categories without selecting them in the list box.

6 Replies
BrunPierre
Master
Master

Consider using source filters to restrict the volume and type of records transferred from your source to your model, allowing you to concentrate only on the necessary data sets.

Like this, perhaps.

Where Match(Type,'MTN CMK')=0;
Sxbbb
Creator III
Creator III
Author

The first sheet doesn't show the MTN CMK, but the second sheet requires only the MTN CMK.
BrunPierre
Master
Master

I think a workaround would be to use buttons or triggers (on activate sheet).

String Search: ='(' & Concat( {<Type=-{'MTN CMK'}>} Distinct '"' & Type & '"','|') & ')'

BrunPierre_2-1670092436191.png

Sxbbb
Creator III
Creator III
Author

Is there another way to get the data value of Type = MTN CMK without showing it in the list box (green)

Suchanan_0-1670290583855.png

I need it like this without displaying information of Type= MTN CMK .

Suchanan_1-1670290665672.png

MayilVahanan

Hi

You can bring one more field with like below and use "Type1" in the first sheet [both filter and table].

If(WildMatch(Type,'ME','MTN','NORMAL','TEST ME','TEST CONFIRM'),Type) as Type1

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Sxbbb
Creator III
Creator III
Author

Suchanan_0-1670296808599.png

results like this But I want the data that Type = MTN CMK not show all tables.