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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

remove values from filter

I have a filter site thant conatains

1

2

3

100

102

I need to remove in some sheets values 100 and 102

How to do it ?

3 Replies
miguelbraga
Partner - Specialist III
Partner - Specialist III

Can you please elaborate better your question. I think I didn't understood correctly.

Regards, MB

Not applicable
Author

Try using a "WHERE" Clause to remove rows that contain unwanted values.

i.e.

LOAD *

FROM [Data]

WHERE not MATCH([Value],'100','102') ;

Anonymous
Not applicable
Author

If i understood correctly,add a calculative dimension like mentioned below;

if(Filter site <>100 or Filter site <>102,Filter site)

Hope this helpful

Regards,

Imran K