
Announcements
Set(
varWorkCalendarID,
LookUp(
Office365Outlook.CalendarGetTablesV2().value,
name = "Calendar" // the one you see in Outlook
).id
);
// Events for the next 7 days
ClearCollect(
colWorkEvents,
Office365Outlook.GetEventsCalendarViewV3(
varWorkCalendarID,
Text(Today(), DateTimeFormat.UTC),
Text(DateAdd(Today(), 7), DateTimeFormat.UTC)
).value
);