Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Experts,
I'm trying to create buttons that change colors when pressed. For example, I want to create a YES and NO button. When the Yes button is pressed, it changes color to green, and the No button changes to Grey. Vise versa, When the No button is pressed, it changes color to Brown. Does anybody know if Qlik Sense Desktop has that capability? Thank you in advance for the help.
Hi @Dante_83 ,
You need to add action in the button property as a set variable value and set it to the one variable.
like below one for Yes button and same for No button
then write a below expression in background color expression as below
for NO button: =if(name='NO',Red(),Brown())
for YES button: =if(name='YES',green(),Brown())
Hi @Dante_83 ,
You need to add action in the button property as a set variable value and set it to the one variable.
like below one for Yes button and same for No button
then write a below expression in background color expression as below
for NO button: =if(name='NO',Red(),Brown())
for YES button: =if(name='YES',green(),Brown())
Hello Abhijit,
I appreciate your help and it works, thank you.