Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

message box after click on button

Hello,

I have a button in qlikview. I want to have: if you click on the button then you see a message box.

How can I make this in qlikview?

Is here a tutorial over?

thanks in advance

12 Replies
Not applicable
Author

You can use the same button to show and hide the message box.

1. Go to Settings -> Variable Overview. Create a variable and assign it a default value.

2. Create a button. For action, go to external and choose set variable. Use the following expression:

=if(vShowHide=0,1,if(vShowHide=1,0))

3. Create a text object. Go to layout -> select conditional. put the following as expression: vShowHide=1

Thanks!

awhitfield
Partner - Champion
Partner - Champion

see the attached :

Not applicable
Author

thanks for the information