Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Conditional Show when field is available within current selection

I am looking for a way to show a textbox or image when value A in field FakeField is selectable.

on my search for an answer i found the getcurrentselections function but that only works if value A is selected.

I want to show the image while value A is still within the current selection.

1 Solution

Accepted Solutions
marcus_sommer

I think you could use as condition something like this:

if(count({< FakeField = {'value A'}>} distinct FakeField) = 1, true(), false())

- Marcus

View solution in original post

2 Replies
marcus_sommer

I think you could use as condition something like this:

if(count({< FakeField = {'value A'}>} distinct FakeField) = 1, true(), false())

- Marcus

Not applicable
Author

Thanks for your answer,

When you use Set Analysis like this it will force the selection to be 'value A' and count will be 1 and the result will be True


but i could copy the field to FakeCopy and hide it from the design, this way i can select in FakeField and the Set Analysis will work like expected!


Thanks marcus_sommer