Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Input Box Label can it be dynamically change ?

Hi All

I have a input box label , now display as vDisplay_Exchange_Sub , i like to change it :-

When user click on TID , i need label to display SGD_ID

When user click on TMY , i need label to display SGD_MY

When user click on TTH , i need label to display SGD_TH

it is possible ?

Paul

2 Replies
Not applicable
Author

Hi

maybe it can help you,write this in your input box label:

=if(GetFieldSelections(Currency_P)='THAI','SGD_TH',if(GetFieldSelections(Currency_P)='MY','SGD_MY','SGD_ID'))

hope that help you

Behnaz

Sokkorn
Master
Master

Hi Mr. Paul,

Yes, it possible.

Let try

1.png

1. Select on vDisplay_Exchange_Sub

2. Click on expression button

3. Use expression below

=If(GetFieldSelections(Currency_P)='INDO','SGD_ID',

    If(GetFieldSelections(Currency_P)='MY','SGD_MY',

        If(GetFieldSelections(Currency_P)='THAI','SGD_TH',

            If(GetFieldSelections(Currency_P)='SG','TSG'))))

See sample attached file also.

Regards,

Sokkorn