Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
MuraliPrasath
Creator III
Creator III

Button Query.

Hi QV Team,

I've attached QVW file with Button Question.

My Requirement is on "Countries multi-selection button" sequence steps one by one and 4th selection option I need when 'Country=No Selection'.

How to achieve this?

Need Help on this?

Thanks,

Murali

1 Solution

Accepted Solutions
Anonymous
Not applicable

6 Replies
Anonymous
Not applicable

Maybe this.

rahulpawarb
Specialist III
Specialist III

Hello Murali,

Hope that you are doing good!

To solve this problem you can define the Text Property of Button as below:

=If(IsNull(GetCurrentSelections(Country)), 'Country: No Selection', GetCurrentSelections(Country))

Please correct me if I missed anything.

Regards!

Rahul

MuraliPrasath
Creator III
Creator III
Author

Thank you Shiva! It worked. Have a good day.

MuraliPrasath
Creator III
Creator III
Author

Hi Rahul,

Thanks for your reply. As of now, I got the answer from Shiva, meets my requirement.

Thanks,

Murali

Anonymous
Not applicable

Hi Rahul,

Solution:-

Button:-

If(vCountry=2, 'Country = USA',

if(vCountry=3,'Country =  Canada','No Selection')))

Action-Select in field

=If(vCountry=1, 2,   If(vCountry=2, 3, If(vCountry=3,4, If(vCountry=4,1))))

Variable

=If(vCountry=1, 'USA',   If(vCountry=2, 'Canada',   If(vCountry=3, 'India', If(vCountry=4,''))))

Thanks

Paridhi

Anonymous
Not applicable

=If(vCountry=1, 'Country = No Selection',

If(vCountry=2, 'Country = USA',

if(vCountry=3,'Country =  Canada',if(vCountry=4, 'Country = India'))))