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 when i select X field

Hi!

I have this inline table

Objects:

Load * INLINE [

DESCRIPTION, ID

Graph , 1

Detail, 2

];

I have object 1 and 2

i have to see object 1 when i select graph with a list table "graph" and object 2 when i select with a list table "Detail"

Thank you

Greetings

Labels (1)
2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Here it is an example

sunny_talwar
MVP
MVP

Within each objects' Layout tab you have to make that object conditional. You can make the following condition

=SubStringCount(Concat(DESCRIPTION, '|'), 'Graph') = 1 for Object 1 (This object will be visible when ever the Graph is selected from the listbox)

=SubStringCount(Concat(DESCRIPTION, '|'), 'Detail') = 1 for Object 2

HTH

Best,

S