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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
daniel_f
Creator
Creator

Notification when selection is excluded

hi all,

I need to know if is possible to get a notification (using the object conditional show) when a specifically selection is excluded. Something like 'GetFieldSelections' but when a user decide to exclude something.

For example:

I made a text with the message "For your information, blah, blah ..." And I want to show it in a text box when the user has chosen not to include (exclude) a specific customer from the list of customers (dimension)

Is this scenario possible to create standard? i use Qlikview 11.

thanks in advance,

Daniel

1 Solution

Accepted Solutions
Not applicable

swuhel,

you're right - intersection is missing. Correct expression as you wrote

=count( {<Customer *=  {Daniel}>} Customer) = 0

View solution in original post

7 Replies
swuehl
MVP
MVP

Should be possible using the conditional show in layout tab, something like

if(GetSelectedCount(FIELD) and not WildMatch(concat(FIELD),'*C*'),1,0)

Not applicable

conditional show

=count( {<Customer={"Specific customer"}>} Customer) = 0

daniel_f
Creator
Creator
Author

hi Swuehl,

what you mean with "and not WildMatch" ?

the script doesn't recognize the above.

hi Dimitry,

it's doesn't working....any other idea?

thanks both...

swuehl
MVP
MVP

Are you able to open my sample app? You should see the expression working.

I like Dmitry's expression even more, but I think there is an intersection operator missing, so if your field name is Customer and you want to notify if Daniel is excluded:

=count( {<Customer = Customer * {Daniel}>} Customer) = 0

or you can write also (but the syntax checker will mark this with as a incorrect with a red line, though the status should say 'Expression ok'):

=count( {<Customer *=  {Daniel}>} Customer) = 0

Not applicable

daniel_f,

then perhaps I don't understand exactly what behavior you are expecting. A value can be

direcrtly selected (green)

indirectly selected (white)

excluded from selection (gray)

what scenario do you need to track?

Not applicable

swuhel,

you're right - intersection is missing. Correct expression as you wrote

=count( {<Customer *=  {Daniel}>} Customer) = 0

daniel_f
Creator
Creator
Author

Great, it's works,

i'll try to customize  this solution to my needs,

thanks both