Hi all,
I am writing a formula to patch all items in a gallery to an existing collection using the unique identifier no. Below is the formula and it runs with no errors.
ForAll(
Gallery5_1.AllItems As obs,
Patch(Findings,
LookUp(Findings,no=obs.no),
{
department: Dropdown8_2.Selected.Dept,
hod: Label37_2.Text,
category: Dropdown6_3.Selected.Value,
subcat: Dropdown7_3.SelectedText.Value,
level: Radio5_3.Selected.Value,
root: TextInput7_4.Text,
finding: TextInput7_3.Text,
corrective: TextInput8_3.Text,
preventive: TextInput8_4.Text
}
)
);
However, the patch function is patching the same values even though I have entered different values in the gallery.

TIA!