hi!
I am creating a powerapp where a form needs to create a new record in 2 SP Lists. In the first one it fills up al the SP fields but in the second one it one fills in "Title", "Voornaam" and "Dienst".
I am using this as the patch code:
Patch(Personeelslijst, Defaults(Personeelslijst), {Title: DataCardValue3.Selected.Value, 'Start datum': DataCardValue6.SelectedDate, Naam: DataCardValue1
, Voornaam: DataCardValue2.Text, Dienst: DataCardValue4.Selected.Value, Stamnummer: DataCardValue5.Text, '@gmail.com': DataCardValue7.Text});
I think it doesnt add them because the lists aren't the same but are there any loopholes or other solutions?
Regards.