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: 
ivandrago
Creator II
Creator II

Go to next tab of script based on condition

Hi,

Is it possible to go to the next tab of the Script Editor and not run this if it meets a condition so it skips the next tab and then goes to the one after.

So if the hour is 14, 16, 18 to skip the next tab but go to the other one?

Thanks

1 Solution

Accepted Solutions
sunny_talwar

May be add a condition at the end of this tab

If not Match(Hour(Now()), 14 , 16, 18) then

and at the end of next tab (the one that was supposed to be skipped add ENDIF;

View solution in original post

3 Replies
sunny_talwar

May be add a condition at the end of this tab

If not Match(Hour(Now()), 14 , 16, 18) then

and at the end of next tab (the one that was supposed to be skipped add ENDIF;

alexdataiq
Partner - Creator III
Partner - Creator III

Yeah, I believe you'll have to put some IF's as Sunny suggested. For Qlikview the script is one continuous script, tabs are just eye candy of the users.

engishfaque
Specialist III
Specialist III

Dear Ivan,

SET YourVariableValue = 10;

If $(YourVariableValue) <> 12 then

     //Execute - Block of Code

End If;

Kind regards,

Ishfaque Ahmed