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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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.

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

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
MVP
MVP

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