Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
alec1982
Specialist II
Specialist II

Hide grayed out data from List box when a value is selected

Hello,

I am not sure if there is another way of doing this beside the below but would love to get opinions..

I need to hide grayed out data when a value in a list box is checked..

The only way so far is by going into the list box option and check hide excluded..

Any other suggestions?

Thxs,

Alec

21 Replies
rustyfishbones
Master II
Master II

try

AGGR(Address,Address)

does the same as the suggestions above, but much easier to remember

Thanks

Alan

agilos_mla
Partner - Creator III
Partner - Creator III

Then,

You've had to disable the address selection in the set analysis.

=aggr(Concat(DISTINCT {<Client=P(Client), Address=>} Address), Address)

rustyfishbones
Master II
Master II

Is there a need for that?, I don't think there is

Not applicable

Alan - why would I want something simple when something complicated/long works just as well? Thanks Alan!

rustyfishbones
Master II
Master II

I mean this in the nicest possible way, but you sound like my wife

it's good to know a few ways though!

rustyfishbones
Master II
Master II

BTW

Love your Qlikview Design Blog http://intuiqlik.com/

alec1982
Specialist II
Specialist II
Author

Thanks all for your help!

rbecher
MVP
MVP

..or

=Aggr(Only(Address), Address)

This gives you the possibility to use an additional set analysis in Only() if needed.

- Ralf

Astrato.io Head of R&D
rbecher
MVP
MVP

I think Concat will be really slow on a big data set..

Astrato.io Head of R&D
rustyfishbones
Master II
Master II

Thanks Ralf,

I will remember that tip