I am creating Outlook event from Power Apps, taking input from SharePoint List. In the list I have a Participant column which is Person Type and allow multiple value. I am using Office365Outlook.V4CalendarPostItem() function. How i can set/combine the value for requiredAttendees parameter from Participant column?
My sample code:
Office365Outlook.V4CalendarPostItem(
"Calendar",
txtTitle.Text,
dtpStartDate.SelectedDate + Time(Value(ddlStartHour.Selected.Value), Value(ddlStartMinute.Selected.Value), 0),
dtpEndDate.SelectedDate + Time(Value(ddlEndHour.Selected.Value), Value(ddlEndMinute.Selected.Value), 0),
"(UTC+06:00) Dhaka",
{
body:txtDescription.Text,
location:cbLocation.Selected.Value,
requiredAttendees:cbParticipants.SelectedItems.Email
}
);
Solved! Go to Solution.
I have solved this issue by using Concat() function. Below is my code
requiredAttendees:Concat(cbParticipants.SelectedItems, Email & "; ")
NOTE: Here cbParticipants is the name of the ComboBox I am using to select Person Type value in Power Apps
I have solved this issue by using Concat() function. Below is my code
requiredAttendees:Concat(cbParticipants.SelectedItems, Email & "; ")
NOTE: Here cbParticipants is the name of the ComboBox I am using to select Person Type value in Power Apps
Hey @hkmamun
have you tried using
cbParticipants.Selected.Email
instead of
cbParticipants.SelectedItems.Email
Then all selected users within cbParticipants should be invited as required attendees.
Hope this helps you! 🙂
Regards
Marvin
Hi @MAR
cbParticipants.Selected.Email will select only one value
the problem is solved by using below code which is selecting multiple items
Concat(cbParticipants.SelectedItems, Email & "; ")
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
203 | |
180 | |
62 | |
32 | |
30 |
User | Count |
---|---|
324 | |
270 | |
104 | |
74 | |
56 |