Hi, I'm having some problems with a ForAll and Galleries/subgalleries patch and I was wondering if someone can give me a hint.
I have a collection/table with name of schools (column [school]) and users for those schools (column [name]).
- I'm displaying in a Parent_Gallery the name of the schools using GroupBy. The Items property is = GroupBy(colSchool,"school","grpSchool").
- Then I have a Child Gallery to display the names of the users
- Finally I have a dropdown where the user can interact and select a value "Yes" or "No"
The view is something like this:

Once the user has selected Yes or No, They click on "Save" and the result should be stored in a SharePoint List as follow:

The formula I am using in the OnSelect property for the button is
ForAll(galParent.AllItems,
ForAll(galChild.AllItems,
Patch(TEst_School,Defaults(TEst_School),{
School:Label8.Text
Name_ID:name,
Value:Dropdown2.Selected.Value
})
)
)
However, It is not doing anything. And I'm not getting any error/warning.
Any idea where is the problem?
Kind Regards