views:

18

answers:

0

Greetings,

Trying to code a semi-monthly calendar entry to be imported into a Google calendar. The objective is to get one entry that will drop a recurring item on the 15th and the last day of the month, provided that if either hits on a weekend, the entry hits on the last workday prior. (That way, if/when I leave the company, I have only one entry to kill rather than two.) Cobbling things together from a number of sources, I crufted up the following:

BEGIN:VCALENDAR
METHOD:PUBLISH
BEGIN:VEVENT
DTSTART;TZID=US-Eastern:20100915
DTEND;TZID=US-Eastern:20100915
RRULE:FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYMONTHDAY=15,31;BYSETPOS=-2
SEQUENCE=0
SUMMARY=Payday
CLASS:PUBLIC
STATUS:CONFIRMED
END:VEVENT
END:VCALENDAR

Google imports one entry from this (for today, September 15, 2010) and nothing else. What am I doing wrong here?

Thank you.