Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Here it is an example
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