Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show Or hiden

Hi evreybody ,

I have a table 

IDPlan
1

HSBC

2BNP
3HSBC

I want to show a textBox juste if ( plan ='HSBC')

Please See tha attached

Someone Can Help Me Thanks All

1 Solution

Accepted Solutions
johanlindell
Partner - Creator II
Partner - Creator II

Set show conditional in the Layout-tab to the formula

Only(Plan) = 'HSBC'

Brgds Johan

View solution in original post

5 Replies
its_anandrjs

Not clear can you explain more.

Not applicable
Author

If you you see my attachement , I have A textbox , so my objectif is make a condtion to show it just if

@2 of my table test = HSBC and hide if @2 # HSBC

johanlindell
Partner - Creator II
Partner - Creator II

Set show conditional in the Layout-tab to the formula

Only(Plan) = 'HSBC'

Brgds Johan

Not applicable
Author

you can also use this condition =if(GetSelectedCount(Plan)=1,1,0) in textbox layout condition It will work for all other plans aswell

its_anandrjs

In the text box Layout properties write a expression

=if(Plan='HSBC',1,0)

And when you click on the Id where condition match it display to you.