Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
prma7799
Master III
Master III

Hide n Show on Dimension n Expression

Hello Experts ,

I need one help that is I have one straight table in that i have 2 dimension with (cyclic group) and 5 expression.

Simply I wanted to hide group2 dimension and Ach , Targ expression when user select brand dimension for else it will show dimension and expression.

Exp Output (when user select Brand)

Expected  Output.png   

1 Solution

Accepted Solutions
Anonymous
Not applicable

in the Arch and Targ condictional field, put this condition

=if( GetCurrentField("Group1") = 'Brand',0,1)

// meaning, if the current selected field in Group 1  is equal to brand put zero (hide)

you can expand to consider the two groups 1 & 2

=if( GetCurrentField("Group1") = 'Brand' or GetCurrentField("Group2") = 'Brand',0,1)

View solution in original post

2 Replies
Anonymous
Not applicable

in the Arch and Targ condictional field, put this condition

=if( GetCurrentField("Group1") = 'Brand',0,1)

// meaning, if the current selected field in Group 1  is equal to brand put zero (hide)

you can expand to consider the two groups 1 & 2

=if( GetCurrentField("Group1") = 'Brand' or GetCurrentField("Group2") = 'Brand',0,1)

jyothish8807
Master II
Master II

Hi PM,

Please refer the attached.

Br,

KC

Best Regards,
KC