I have a checkbox in a gallery. When I select it, I want to have the code in the On Check property add the ThisItem.Result of the gallery to the existing contents in a multiple line of text column in a SharePoint List.
This is the code I tried:
Patch(SP_List_Name,First(Filter(SP_List_Name(Title=DropdownBox.Selected.Result)),{MultiLineofTextColumn: & ThisItem.Result})
It gives me an error on the &. Without the &, it overwrites the existing contents of the column,
Notes:
First/Filter Title/Dropdown select record to update.
ThisItem.Result is the result of Items property of the gallery Sort(Distinct(SPList,Column),Result)
I tried to follow the solution given in this post https://powerusers.microsoft.com/t5/Building-Power-Apps/Append-all-version-comments-to-a-multiple-line-text-box-using/m-p/424095 but I was unsuccessful.
Thanks in advance,
Kim