Hello everyone,
I need your help.
I'm trying to update a sharepoint list base with data from a collection. But I'm encountering errors that I don't understand. Because I've already used the formula in another application that works.
I've already looked for solutions among the old forum questions, but I can't find one that works in my case.
Here's my formula for my collection.
Clear(bobinesv2);;
ForAll(
Gallery2_3.AllItems;
Collect(
bobinesv2;
{
Titre: refbobine_3.Value;
Compatibilite: drcompat_4.Selected;
BobineBloquee: bobbloquee_2.Selected;
'Raison de dérogation': Rderogation_3.SelectedItems;
'Commentaire compatibilité': commentcmptlite.Value
}
)
);;
Here's my formula for the Patch function, which doesn't work.
Patch('Base bobines';Filter('Base bobines';NumComPiste = ncmdPiste_1.Text);bobinesv2)
Here's the error message : Invalid argument type (Table). Expecting a Record value instead.
Can anyone help me solve this error ?