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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Select non duplicate values in field

I have an inventory number field in a table. I want to select only those inventory numbers that are not duplicates. For example:

Inventory Number
111
112
112
113
115
115
115

Out of the values above I would want to select only 111 and 113. Is there an easy way to do this? Ideally I want a way to do this via a search in a list box containing this field.

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Right click the listbox and select advanced search. Then enter the expression =count([Inventory Number])=1 and press the Go button:

comm132606.png


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Right click the listbox and select advanced search. Then enter the expression =count([Inventory Number])=1 and press the Go button:

comm132606.png


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks!