Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
try
AGGR(Address,Address)
does the same as the suggestions above, but much easier to remember
Thanks
Alan
Then,
You've had to disable the address selection in the set analysis.
=aggr(Concat(DISTINCT {<Client=P(Client), Address=>} Address), Address)
Is there a need for that?, I don't think there is
Alan - why would I want something simple when something complicated/long works just as well? Thanks Alan!
I mean this in the nicest possible way, but you sound like my wife
it's good to know a few ways though!
BTW
Love your Qlikview Design Blog http://intuiqlik.com/
Thanks all for your help!
..or
=Aggr(Only(Address), Address)
This gives you the possibility to use an additional set analysis in Only() if needed.
- Ralf
I think Concat will be really slow on a big data set..
Thanks Ralf,
I will remember that tip