Hi
I am trying to display calendar events from all categories except one - as some employees mark personal events on their work calendar and we do not want this displayed in power apps
The code looks like this:
ClearCollect(
MyCalendarEvents,
Office365Outlook.GetEventsCalendarViewV2(
"Calendar",
Text(
AMDate_4.SelectedDate,
DateTimeFormat.UTC
),
Text(
DateAdd(AMDate_4.SelectedDate,7,TimeUnit.Days),
DateTimeFormat.UTC
)
).value
);
Is their a filter I can use to show the events where the category does not equal Personal?