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: 
shiveshsingh
Master
Master

Exclude value from listbox

i have 2 value in listbox.

Steve, keen

How to show listbox by excluding 1 value?

below expression in listbox is not working.

if(Owner = 'Steve',Owner)

6 Replies
swuehl
MVP
MVP

It should work as you have written, but take care to input the expression in the field <expression> (from field drop down on general tab),not on expression tab.

shiveshsingh
Master
Master
Author

Capture.JPGit is coming like this, keen is still visible

swuehl
MVP
MVP

As I said, you need to enter the expression on general tab, like a calculated dimension, not a measure:

2017-05-13 11_51_07-QlikView x64 - [E__Users_Stefan_Downloads_comm260388.qvw].png

2017-05-13 11_50_56-QlikView x64 - [E__Users_Stefan_Downloads_comm260388.qvw].png

qlikview979
Specialist
Specialist

Hi

Are you Expecting like this

Untitled.png

vinieme12
Champion III
Champion III

Try

=AGGR(if(Owner = 'Steve',Owner),Owner)

or

=AGGR( Only ({<Owner ={'Steve'}>} Owner) , Owner)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
shiveshsingh
Master
Master
Author

done thanks