Page 1 of 1

trigger 3rd tue of month

Posted: Sun Apr 03, 2011 10:17 am
by racheney
Is it possible to set a trigger for the 3rd tuesday of the month?

trigger 3rd tue of month

Posted: Sun Apr 03, 2011 10:25 pm
by Oleg
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.

trigger 3rd tue of month

Posted: Tue Apr 05, 2011 10:20 am
by racheney
Thank you,
I didn't think adout putting it in the actions section,
just the trigger section.