Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi evreybody ,
I have a table
ID | Plan |
---|---|
1 | HSBC |
2 | BNP |
3 | HSBC |
I want to show a textBox juste if ( plan ='HSBC')
Please See tha attached
Someone Can Help Me Thanks All
Set show conditional in the Layout-tab to the formula
Only(Plan) = 'HSBC'
Brgds Johan
Not clear can you explain more.
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
Set show conditional in the Layout-tab to the formula
Only(Plan) = 'HSBC'
Brgds Johan
you can also use this condition =if(GetSelectedCount(Plan)=1,1,0) in textbox layout condition It will work for all other plans aswell
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.