Hey everyone
I'm new to PowerApps and I'm facing an issue that I can't seem to solve. I'm building a PowerApp that contains a nested gallery of records that are derived from a SharePoint list. Here are some relevant screenshots of my application:


The following is my code contained in the OnSelect property of the Save button (Button_Sample_22):
ForAll(Gallery3_3.AllItems As aPatch,
ForAll(Gallery6_3.AllItems As bPatch,
Patch(
Qualifications,
Defaults(Qualifications),
{
Title: aPatch.Title2_6.Text,
Subcategory: bPatch.Subtitle5_6.Text,
Skills: bPatch.Subtitle5_7.Text,
Score: bPatch.Dropdown_Sample_4.SelectedText.Value
}
)
)
);
Expected behavior: Patches all the records inside the gallery into the connected SharePoint list (Qualifications).
Current behavior: Does nothing.
Here is a screenshot from the PowerApps monitor for the application:


According to the logs, the ForAll loop is being executed, but does not return a valid result, i.e. does not reflect the changes inside the application to the SharePoint list. Any idea on how to fix this?