Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a filter with X Y Z and a table that reacts to the selection. Is there a way to create a table that will show only columns A,B,C when filter X is selected and only columns P,Q,R when filter Y is selected?
Thanks is Advance.
can you try using conditional show
Hi GHasan,
Need to use "Enable Conditional" feature.
Use below expression in A,B,C Columns to show them when X is selected in filter:
If(GetFieldSelections(Filter)=X,1,0)
Use same approach to show P,Q,R columns When Y is selected .
Hope, this will answer your question.
Please mark it correct, if you find it useful.
Cheers !
Squeshi
Yes I used it, and it worked.
Thank you
Hi Squreshi,
I used the following and it worked:
GetSelectedCount(Selection)> =1 AND Concat(Selection, ' , ') Like '*X*'
Thanks