trigger 3rd tue of month
trigger 3rd tue of month
Is it possible to set a trigger for the 3rd tuesday of the month?
trigger 3rd tue of month
3rd tuesday of the month always has day number between 15 and 21.
You should do the following:
attach weekly scheduler to the task (each tuesday);
in the task use such algorithm:
if {day} >= 15 then
if {day} <= 21 then
...
do something
...
end if
end if
Thus, your code will work only at 3-rd tuesday of the month.
Also see this topic with similar problem.
You should do the following:
attach weekly scheduler to the task (each tuesday);
in the task use such algorithm:
if {day} >= 15 then
if {day} <= 21 then
...
do something
...
end if
end if
Thus, your code will work only at 3-rd tuesday of the month.
Also see this topic with similar problem.
trigger 3rd tue of month
Thank you,
I didn't think adout putting it in the actions section,
just the trigger section.
I didn't think adout putting it in the actions section,
just the trigger section.