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

Edit selection - using filters

Hi, I have an issue. Is there any way to add filter for an empty cells ? Or exclude some unwanted value (not numeric) ?

 

 

4 Replies
Anil_Babu_Samineni


@Maciej29 wrote:

Is there any way to add filter for an empty cells :  What is the purpose you are creating?

Exclude some unwanted value (not numeric) : You can use Not Match(FieldName, 'Unwanted1', 'Unwanted2'..)

 

 


 

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Maciej29
Contributor III
Contributor III
Author

I would like to exclude some records because i dont need them in my charts, (but not delete them manually, cannot change master version of my file) and try to avoid built this condition in every chart. That's why i want to filter out only records with value that i want to, or exclude these unwanted.

dgreenberg
Partner - Specialist
Partner - Specialist

What if you did a resident load of the data?

OldTable:

Select * from mysource.qvd(qvd);

 

NoConcatenate 

NewTable:

Load * 

resident OldTable where field1>0;

drop table OldTable;

rename table NewTable to OldTable;

 

Would that work for you?

dwforest
Specialist II
Specialist II

Data is either in your app or not. If in, it would need to be filtered on every chart/measure you want to exclude it,

Sum(<{Fieldname={*}>} value)

={*} select all non-null values.

-={unwanted} would exclude "unwanted" values where unwanted is the literal value, e.g. 6