Hi Team,
I have a .ics file which has RRULE to create events which occur on every 1st and 3rd Thursday of the month. This .ics when opened in Gmail calendar works perfectly and events are created for the respective dates. However when opened in Outlook 2016 getting
error Operation Failed. I tried RRULE for weekly and it works in outlook. I tried parsing this RRULE using http://worthfreeman.com/projects/online-icalendar-recurrence-event-parser/ and it gave the following dates which are correct.
Thu 08/16/2018 18:15:00
Thu 08/16/2018 19:00:00
Thu 09/06/2018 18:15:00
Thu 09/06/2018 19:00:00
Thu 09/20/2018 18:15:00
Thu 09/20/2018 19:00:00
Thu 10/04/2018 18:15:00
Thu 10/04/2018 19:00:00
Thu 10/18/2018 18:15:00
Thu 10/18/2018 19:00:00
Thu 11/01/2018 18:15:00
Thu 11/01/2018 19:00:00
Thu 11/15/2018 18:15:00
Thu 11/15/2018 19:00:00
Thu 12/06/2018 18:15:00
Thu 12/06/2018 19:00:00
Thu 12/20/2018 18:15:00
Thu 12/20/2018 19:00:00
Following is the .ics file content.
BEGIN:VCALENDAR
VERSION:2.0
METHOD:REQUEST
BEGIN:VEVENT
UID:1B788C86804F764CBD796DCD13732DDA
DTSTAMP;VALUE=DATETIME:20180810T053939
DTSTART;VALUE=DATETIME:20180816T181500
DTEND;VALUE=DATETIME:20180816T190000
RRULE:FREQ=MONTHLY;BYDAY=1TH,3TH;UNTIL=20181231T120000Z
ORGANIZER;CN="EMPLOYEE":MAILTO:Employee@example.com
ATTENDEE;RSVP=TRUE:MAILTO:Employee1@example.com
DESCRIPTION:Thursday
LOCATION:Conference Room
SUMMARY;LANGUAGE=en-us:Interest - Thursday
BEGIN:VALARM
TRIGGER:-PT15M
ACTION:DISPLAY
END:VALARM
END:VEVENT
END:VCALENDAR
Can you please help here.
- Suraj