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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Joo525
Contributor III
Contributor III

Columns fading in and out in a tabel

Hi,

Some time ago I have seen a qlik app in which you can fade in and out the columns by clicking a button (or some other control element?). At least it looks like a button for me.

So, if you click once, the column appears, I click a second time and it vanishes. by clicking a third time it appears again.

I am trying to built something similar but it won't work.

Thank you for your help.

 

Labels (1)
5 Replies
Qrishna
Master
Master

Create a button with an action with setting up a variable value 0 and 1. use this variable in conditional show in your column.

VBD
Partner - Creator II
Partner - Creator II

Hello,

Now in qlik sense you have the straight table chart in which you can do this easly,

VBD_0-1730791299011.png

VBD_1-1730791328316.png

VBD_2-1730791344026.png

 

Are you using qlik sense and which version ?

Regards,

 

Valentin Billaud
Next Decision
Joo525
Contributor III
Contributor III
Author

Thank you, this works for one direction.

But I would need two buttons, one for fading in, one for fading out. I have seen a app in which it works with only one single button for both actions. 

Qrishna
Master
Master

'So, if you click once, the column appears, I click a second time and it vanishes. by clicking a third time it appears again.' -  this can be achieved with one button itself like i said above.

if you want two button: then probbably you need to differen variables to hadle this flow.

Joni
Partner - Contributor
Partner - Contributor

Hi @Joo525 ,

Try this: In the button options select Action: Set Variable value.

Select your variable you plan to use to show/hide elements (mine here called vTimeHorizon) and type into Value field: 

=IF(vTimeHorizon=1,0,1)

This way you can have on/off switch on single button.

Hope this helps 🙂