Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

my req is i need to create a Button in front end if i click on that action need to perform is one stright table report need to be generated with that action pls tell me how ?

my req is i need to create a Button in front end if i click on that action need to perform is one stright table report need to be generated with that  action pls tell me  how ?

22 Replies
Not applicable
Author

first create a variable like vActive and set it's value to 0.then use the action set variable in button action list and set the variable value to 1.no put a layout condition in the straight table vactive=1.this should work.

cheers

satishkurra
Specialist II
Specialist II

Hi

First Create a Variable from Variable Overview (CTRL+ALT+V) as vShowHide=1

Create Button -> General Tab -> specify Text as =if($(vShowHide)=1,'hide','show')  -> Actions Tab -> Select Action Type as External and Action as Set Variable -> Specify Variable as vShowHide and Value as =$(vShowHide)*-1  --> Now go to Straight Table Chart Properties and in Layout Tab, Under Show, Specify Conditional Value as vShowHide=1 -> Click Apply -> Click OK.

Now come to button and click Show, Chart will be displayed and click once again the button, the text will be changed to hide and the chart will be hidden.

In this way, we can achieve this requirement with 1 button object ONLY.

Thanks

Satish

Not applicable
Author

wru  present