I'm trying to connect to an Outlook calendar and display a list of events in my gallery. Then, when an event is selected, I want to display a second gallery that shows the required attendees along with each attendees response (accepted, declined, etc.)
In my first gallery, the events are displaying properly using the follow:
SortByColumns(
Office365Outlook.GetEventsCalendarViewV3(
varUserCalendarId,
Text(Date(2023,09,18),DateTimeFormat.UTC),
Text(Date(2023,09,22),DateTimeFormat.UTC)
).value,
"start",SortOrder.Descending)
I have set the OnSelect property in gallery 1 to this:
Set(varRecord,ThisItem);
I successfully call the event into the second gallery using this in the Items property:
Gallery1.Selected
Then I have two labels. One for Attendees using the below. This displays a semi colon separated list of attendees.
ThisItem.requiredAttendees
The second label using the below only shows my response:
ThisItem.responseType
What I really want in the second gallery is to list each attendee on a separate line, along with their associated response. Is there a way to accomplish this?
If anyone knows a way to do this, I would be grateful for any help!