I have a Gallery in PowerApps.
The gallery started off as a Collection where I store the data of the Gallery.
Now I have added a SP list and I Patch the data from the Collection in to my SP list with a button.
Set(JsonGather,JSON(CalculationGallery,JSONFormat.IndentFour));
Patch(Senioritycal,Defaults(Senioritycal),{
WorkNo: TxtWno.Text,
HireDate: DateNew.Value,
Title: TxtName.Text,
Location: DrpChoice.SelectedText.Value,
Relationship:JsonGather
});
So far, so good. My SP list gets all this data out of my app and saves everything.
The "Relationship" column is now populated.
BUT now I have a problem when I need to take the data from the entire row and have to take it back to my gallery inside my App.
Is there a way to do this?

Report
All responses (
Answers (