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

Buttons in qlikview

hi all,

I have a requirement where i need to open the Object by button click and i have to close the Object by another button

Thanks in Advance .

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

you can create a variable 'var1' and then on button action you can add the set in variable action and set 1,

and in object go to the layout button and select show->condition

if(var1=1,1,0)

and on the second button also add the same action(set in variable), this time set 0.

its for showing some object of the same qvw. if you want to invoke other qvw then you can use the above provided link.

with regards

Harshita Gaur

View solution in original post

8 Replies
sujeetsingh
Master III
Master III

Where you going to put these buttons then ?

ngulliver
Partner - Specialist III
Partner - Specialist III

Hi,

Have a look at this blog on using buttons.

http://www.quickintelligence.co.uk/qlikview-buttons/

Regards,

Neil

jpenuliar
Partner - Specialist III
Partner - Specialist III

A Conditional Show(Properies>>Layout>>Show>>Condiotinal) trigger by button action

sujeetsingh
Master III
Master III

You need to then use document chaining where in one document you will only have the Button on clicking it you will be navigated to The document you want to open.

Then the document will have a BUTTON which will when clicked will take you to the one at starting

marcus_malinow
Partner - Specialist III
Partner - Specialist III

One way to achieve this:

Create a variable called vShow

In the button add an action to 'Set Variable'

Set the variable vShow. The value should be '=if(vShow=1,0,1)'

Set your object to conditonallly display. The condition should be 'vShow=1'

Anonymous
Not applicable
Author

Assume by clicking button once Object(Chart Should be Openend) and clicking another button the same chart should be closed.

Thanks

ashfaq_haseeb
Champion III
Champion III

Like this

Regards

ASHFAQ

Not applicable
Author

Hi,

you can create a variable 'var1' and then on button action you can add the set in variable action and set 1,

and in object go to the layout button and select show->condition

if(var1=1,1,0)

and on the second button also add the same action(set in variable), this time set 0.

its for showing some object of the same qvw. if you want to invoke other qvw then you can use the above provided link.

with regards

Harshita Gaur