Hi Everyone,
I am seeking urgent help on a formula for power app. I am attempting to have all fields patch to my SharePoint data list (working but not fully) I am stuck on my combo box field. I select three names on the combo box and they get separated but the same name populates. how can i fix this? Here is the format I've used and an example below;
ForAll(
ClientNameComboBoxGS.SelectedItems,
Patch(
'Group Sign In Sheet',
Defaults('Group Sign In Sheet'),
{
'Client Name': ClientNameComboBoxGS.Selected.ClientName,
Group: GroupNameText.Text,
FacilitatorName: FacOneText.Text,
Location: LocationText.Text,
Date: DatePicker1_1.SelectedDate,
Start_Time: StartDropdown_1.Selected.Value,
End_Time: EndDropdown_1.Selected.Value,
TotalTime: TotalTimeLabel_1.Text,
Facilitator_Date: DatePicker1_1.SelectedDate
}
)
)
The name is the issue because this what I selected in the combo box and what saved to SharePoint