Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
a_f:f:af:next_sequence_time [2022/09/02 02:52] – removed - external edit (Unknown date) 127.0.0.1a_f:f:af:next_sequence_time [2023/05/09 01:13] (current) sean
Line 1: Line 1:
 +{{tag>Index Function Function_List Date_And_Time Version:v8.5}}
 +====== NEXT_SEQUENCE_TIME ====== 
 +
 +===== Description =====  
 +Defines a time sequence that starts at a particular minute of a particular hour and then occurs every few minutes. Returns “Yes” if the current time coincides with the sequence occurrence.
 +===== Parameters =====  
 +identifier of the time sequence (any text that has to be unique across all sequences), minutes of the hour when the sequence starts and time interval of the sequence in minutes
 +===== Example =====  
 +<code aim>IF NEXT_SEQUENCE_TIME('SEQ1',0,15) = 'Yes' THEN 
 +   DoSomething 
 +/* this will return Yes at 00, 15, 30 and 45 minutes of every hour)*/ </code>