Hi:
We have some recurring events working but cannot seem to find the key words in the V4CalendarPostItem to getting something like schedule a meeting on the second Tuesday of each month.
The following works so far:
Office365Outlook.V4CalendarPostItem(LookUp(Office365Outlook.CalendarGetTablesV2().value, name ="Calendar").name,
txteventname_1.Text,
// start time
DateTimeValue(dtestarttime_1.SelectedDate & " " & drpstarthour_1.Selected.Value & ":" & drpstartminutes_1.Selected.Value ),
// end time
DateTimeValue(dteendtime_1.SelectedDate & " " & dteendhour_1.Selected.Value & ":" & dteendminute_1.Selected.Value ),
"Eastern Standard Time",
{
requiredAttendees: Concat(drprequiredattendees_1.SelectedItems,Email, ";") ,
optionalAttendees: Concat(drpoptionalattendees.SelectedItems, Email , ";") ,
location: roomsdrp_1.Selected.Value,
importance: "normal",
isAllDay: false,
Body: "This meeting has either already been placed on your calendar or you have been asked to attend, please respond if you see a prompt in your email to do so",
// weekly monthly etc.
recurrence: Text(drpby.Selected.Value),
// not sure about the following setting
//interval: 2,
Sun thru Sat using a number
daysOfWeek: Value(varDayValue),
//index: "second", is this how we would get the second Tuesday of each month?
//RecurrenceEnd: Text(Last(colNthDays).EndDate, "[$-en-US]yyyy-mm-dd"),
// Number of weeks or months
numberOfOccurences: Value(drprepaeat_1.Selected.Value),
reminderMinutesBeforeStart: 15,
isReminderOn: true
}
);
Any help would be greatly appreciated.
Chuck