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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Less than a time

Hello,

I wish my script to exit if the reload time is before a specific time of day

How would I go about this?

Thank You

Graham

1 Solution

Accepted Solutions
prieper
Master II
Master II

IF HOUR(NOW()) < 16 THEN

EXIT SCRIPT;

END IF

may do

View solution in original post

2 Replies
prieper
Master II
Master II

IF HOUR(NOW()) < 16 THEN

EXIT SCRIPT;

END IF

may do

Not applicable
Author

Peter,

Excellent, Thank You!

Graham