Dear dev,
I am currently facing an issue regarding Outlook connector for Powerapps. Several of our users faced issues on GetEventsCalendarViewV3. Further investigation, all user is using Samsung smartphone. Attach with this message is the screenshot of this issue.
Below is the sample code that I used to display the calendar within the powerapps. I have attached this code within gallery.
SortByColumns(
FirstN(
Filter(
Office365Outlook.GetEventsCalendarViewV3(
LookUp(
Office365Outlook.CalendarGetTablesV2().value,
name = "Calendar"
).id,
DateValue(Now()),
DateAdd(
Today(),
1
)
).value,
startWithTimeZone >= Now() || endWithTimeZone >= Now()
),
5
),
"startWithTimeZone",
SortOrder.Ascending
)
Appreciate helps from a fellow devs.
Thank you.