Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey,
when I want to make a selection like "ALL minus XY" I usually pick "XY" from a listbox and "Select Excluded" from the context menu.
Example: Select all countries apart from Austria
Result: In the "Current Selections" I see "NOT Austria".
Is there search expression for listboxes in order to get the same result directly? I guess there should be a "unequal" operator ...
I already tried
Regards,
Florian
I got your question wrong.
You can use - before your selection to exclude that in the search
Thanks
Mhatim
Please see the attached the QV application
You can use any of the expressions
Regards
Mhatim
Hi
Try like this
Document properties-trigger-> select the Countries field name , add trigger "Onselect", SelectExcluded , Field -> Countries
SO whenever you select the field, its excluded that and show the remaining field..For example, when u select Austria, its select other than Austria in Countries list box.
Hope that helps
Hi,
try this in the list boxe's general tab:
Field-> Expression -> Edit...
=if(Countries='Austria',null(),Countries)
Have fun
MC
I got your question wrong.
You can use - before your selection to exclude that in the search
Thanks
Mhatim
Thanx mhatim - that's exactly what I meant!
For alphanumeric it works perfectly, but what if I have numeric values in my listbox? Example: a listbox containing discounts in % --> I want to select all sales positions that didn't have a 100% discount.
Self-evidently, the minus operator doesn't work in that case ...
Regards,
Florian
Use < 100%
Oh ... sure!
It has been a long day
Thanks!
If that was a different number, althought you can not use, for instance, <> 5 and -5 would not make sense, you could use >5<5 to ignore just the number 5 ( or even to create any other range)
Regards,
Erich