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: 
marina24
Contributor III
Contributor III

Filtering data by a large number of values

Hello, experts.

I have a table with a field "Key". This field contains several thousand different values.

How can I filter this table by 300 values of this field?

It's not a one-time task. Our users often need to filter table by selecting a large number of values.

Is it possible to do it in QlikView?

1 Solution

Accepted Solutions
MarcoWedel

maybe like this:

MarcoWedel_0-1644958653741.png       MarcoWedel_2-1644958702718.png

 

 

LOAD KEY
FROM
[test1502.xlsx]
(ooxml, embedded labels);


tabValueFilter:
LOAD A as KEY,
     'ValueFilter' as ValueFilter
FROM [https://community.qlik.com/cyjdu72974/attachments/cyjdu72974/qlikview-app-development/1217377/2/300%20values.xlsx] (ooxml, no labels, table is Лист4);

 

 

View solution in original post

2 Replies
MarcoWedel

maybe like this:

MarcoWedel_0-1644958653741.png       MarcoWedel_2-1644958702718.png

 

 

LOAD KEY
FROM
[test1502.xlsx]
(ooxml, embedded labels);


tabValueFilter:
LOAD A as KEY,
     'ValueFilter' as ValueFilter
FROM [https://community.qlik.com/cyjdu72974/attachments/cyjdu72974/qlikview-app-development/1217377/2/300%20values.xlsx] (ooxml, no labels, table is Лист4);

 

 

marina24
Contributor III
Contributor III
Author

Thank you so much for your answer and idea.