Skip to main content
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