ForAll(
Gallery3.AllItems,
If(
!IsBlank(inputName_txt.Value),
Patch(
NameList,
Defaults(NameList),
{Name: inputName_txt.Value,
EntityType: InputEntity_drpdwn.Selected.EntityTypes
}
)
)
),
Clear(myInput);
Notify("Rows have been successfully saved to the database.", NotificationType.Success);
Reset(inputBpNumber_txt);
// Repopulate myInput collection with 10 empty entries
ClearCollect(myInput,
ForAll(Sequence(10), {Name: "", EntityType: "", Relationship: "", Involvement: "", CountryOfResidency: "", Notes: ""})
);
This is the errro im getting: