
Announcements
Hello,
I am using this code in the Onchange property of Combobox1
Set(varSelectedEmployee, ComboBox1.Selected);
Set(varUserEmail, varSelectedEmployee.UserPrincipalName);
Set(varUserCalendarId, LookUp(Office365Outlook.CalendarGetTablesV2({userPrincipalName: varUserEmail}).value, name="Calendar").id);
ClearCollect(colEvents, Office365Outlook.GetEventsCalendarViewV3(varUserCalendarId, DateValue(Today()-30), DateValue(Today()+60)).value);
but it is still fetching logged in user's events. Can someone please help with this.
Thanks in advance.