I am using Power Apps to customize a SharePoint list form and am having a rather challenging time with lookup columns.
❌ If the lookup list (source) has more than one column, the column that references the lookup list is NOT updated on save.
✔ If the lookup list (source) has only a single column, the column that references the lookup list is updated as expected.
I have searched the Internet for a few days and have found various articles with "solutions", but I have not been able to get any of them to work. Does anyone have any suggestions?
SharePoint List: BRANCH
Column: Title
SharePoint List: BRANCHGRADE
Column: Title
Lookup Column: BRANCH (from BRANCH.Title)
PowerApp Card Control: FacultyGrade_DataCard
Property: Default
ThisItem.'Faculty Grade'
Property: Update
{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: FacultyGrade_DataCardValue.Selected.ID,
Value: FacultyGrade_DataCardValue.Selected.Title
}
PowerApp Combo box Control: FacultyGrade_DataCardValue
Property: DefaultSelectedItems
Parent.Default
Property: ItemsSortByColumns(Filter(BRANCHGRADE, BRANCH.Value = FacultyBranch_DataCardValue.Selected.Value),"Title",Ascending)
The green box is the column with a lookup list that has a single column; the combo box value is saved as expected.
The red box is the column with a lookup list that has multiple columns; the combo box value is not saved.
