Office365Users.SearchUser({searchTerm:ComboBox1.SearchText})
Patch(
SPList,
Defaults(SPList),
{
Email: ComboBox1.Selected.Mail,
Name: ComboBox1.Selected.DisplayName
}
)
//For Email
ComboBox1.Selected.Mail
// For Name
ComboBox1.Selected.DisplayName
ForAll(Combobox1.SelectedItems As Item,
Patch(
SPList,
Defaults(SPList),
{
Email: Item.Selected.Mail,
Name: Item.Selected.DisplayName
}
))
ComboBoxField
that contains the records with Email
and Name
.YourSharePointList
.Email
and Name
.Patch
formula to save new item:Patch(
YourSharePointList,
Defaults(YourSharePointList),
{
Email: ComboBoxField.Selected.Email,
Name: ComboBoxField.Selected.Name
}
)
YourSharePointList
: Name of your SharePoint list.Defaults(YourSharePointList)
: This creates a new item in the list.ComboBoxField.Selected.Email
and ComboBoxField.Selected.Name
: These fetch the Email
and Name
values from the selected item in the ComboBox.
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional