Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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;
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;
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.
Dear Ivan,
SET YourVariableValue = 10;
If $(YourVariableValue) <> 12 then
//Execute - Block of Code
End If;
Kind regards,
Ishfaque Ahmed