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: 
Not applicable

HOW TO ACTIVATE NEXT SHEET ?

I have a PRODUCT_TYPE, table, which has, for example, CHOCOLATE & STRAWBERRY. how do i modify it such that, when i click STRAWBERRY, it automatically changes to the next sheet ? must i use triggers?

1 Solution

Accepted Solutions
Not applicable
Author

hi Nileshrocks yes, we can get ur requirement in two ways. one is by using triggers and another by macros. but macros kills efficiency of our application. i have a solution for ur`s.

Goto

Settings-> Document Properties -> Triggers -> Field Event Triggers ->

select the STRAWBERRY field and click "on select Edit Actions.." button

click on ADD button and select Action Type as "LayOut" and select Action as "Activate Sheet" and then click on "OK" button.

Now write the below condicion in the "Sheet ID" Text Box

=if(getSelectedCount(STRAWBERRY ) >0,SH02,)

i think it will work, otherwise use the below one..

SH02

Regards

A'run'

View solution in original post

1 Reply
Not applicable
Author

hi Nileshrocks yes, we can get ur requirement in two ways. one is by using triggers and another by macros. but macros kills efficiency of our application. i have a solution for ur`s.

Goto

Settings-> Document Properties -> Triggers -> Field Event Triggers ->

select the STRAWBERRY field and click "on select Edit Actions.." button

click on ADD button and select Action Type as "LayOut" and select Action as "Activate Sheet" and then click on "OK" button.

Now write the below condicion in the "Sheet ID" Text Box

=if(getSelectedCount(STRAWBERRY ) >0,SH02,)

i think it will work, otherwise use the below one..

SH02

Regards

A'run'