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

Use button as a slider

Hello all,

I want to use buotton as a slider in qlikview.

I have attached a screenshot.

On click of < and > buttons previous and next Regions values should be displayed with the sliding effect.

How I can do it?

Thank You in advance..

8 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

I have an article on my blog that shows how to do this in detail:

http://yahqblog.blogspot.com/2013/01/paged-charts-in-qlikview.html

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

I have an article on my blog that shows how to do this in detail:

yahqblog.blogspot.com/2013/01/paged-charts-in-qlikview.html

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
tresesco
MVP
MVP

You have to use trigger to achieve this. Try to create a sample qvw and share here.

Not applicable
Author

Hello Tresesco,

I have attached a .qvd and .qvw file of the same.

Thank You.

Anonymous
Not applicable
Author

Hi,

Please try the attached application and let me know if this is what u expected.

cheers,

keep qliking

tresesco
MVP
MVP

Please check the attached qvw.

Not applicable
Author

Thank You Yashadam for quick reply,

but I am working on QlikView personal edition and not able to open files that u have just sent..

Anonymous
Not applicable
Author

ok..here is how you can achieve it:

Step 1: add 2 variables;

              test=1

                    and

              object

              if($(test)=1, 'CH01',
              if($(test)=2, 'CH02',
              if($(test)=3, 'CH03', 'CH04')))

step 2: On the button add action "Set Variable"

step 3: set the test variable and value to

              =if($(test)=1,2,

                if($(test)=2,3,

                if($(test)=3,4,1)))

step 4: Add another action "Activate Object" and Object ID as $(object)

Similarly, on the reverse button change step 3 as following

Step 3: set the test variable and value to

              =if($(test)=4,3,

                if($(test)=3,2,

                if($(test)=2,1,4)))

try it out..:)

cheers