Skip to main content
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

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Here it is an example

sunny_talwar

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