Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display one Graphic or another depending on the button we press

Hi all,

I have added several buttons to my qlikview and depending which of them I press, a different chart should be displayed in the main area ..

Any hint?

Thanks!

1 Solution

Accepted Solutions
cgdonders
Partner - Creator
Partner - Creator

Hi,

You can use variables for this. Example:

- create a variable like vShowChart in menu Settings\variable overview. Set value 1 in this variable.

- create a button that sets the value of this variable to 0 or 1 with the following action

external action, set variable: refer to vShowChart

If (vShowChart=0,1,0)

- in the chart use conditional show on layout tab:

Chart 1: vShowChart=1

Chart 2: vShowChart=2

View solution in original post

2 Replies
cgdonders
Partner - Creator
Partner - Creator

Hi,

You can use variables for this. Example:

- create a variable like vShowChart in menu Settings\variable overview. Set value 1 in this variable.

- create a button that sets the value of this variable to 0 or 1 with the following action

external action, set variable: refer to vShowChart

If (vShowChart=0,1,0)

- in the chart use conditional show on layout tab:

Chart 1: vShowChart=1

Chart 2: vShowChart=2

Josh_Good
Employee
Employee

This video should help:

Show and Hide Multiple Objects

-Josh