Hey all,
I am using multiple galleries to recreate ppt like feel for users and due to this have the need to patch data from multiple filtered galleries to same SharePoint list, without using collections.
My app page would look something like below: multiple galleries, each filtered on Region selected from the drop down and Brand from the list column in my SharePoint

My SharePoint list looks like: Q1, Q2, Q3 and Q4 are the columns to be patched basis QTR selection from the drop down

I am using something like below:
If QTR_Dropdown.Selected.Value = "Q1 2023"
ForAll(
Gallery1.AllItems,
Patch(
'My SharePoint',
ThisRecord,
{
Q1: txtbox.Text,
'Last Modified': Now()
}
)
);
,
... So on for each gallery and for all four Quarters
Pls help as using multiple patch functions is not working, data is not getting stored for all galleries and sometimes it even throws Network error