[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Recurrence rule question



I have a question about how to specify a particular, rather complicated,
kind of recurrence rule: "Every month on a certain day of the month, except
that if this falls on a Saturday or Sunday, move it to the following Monday".

I can see how to do this for days that *aren't* near the end of the month.
E.g., for "Every 15th of the month, except that if it's a Saturday or
Sunday, move to the following Monday", you could say:
	FREQ=MONTHLY;BYMONTHDAY=15,16,17;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=1
in other words: the first weekday each month that occurs on the 15th, 16th,
or 17th.

However, this doesn't work for days near the end of the month.  How could
you specify "30th of each month, except that if it's a Saturday or Sunday,
move to the next Monday".  Is this even possible?

	Ross.