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

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