Hi,
I have to update multiple records and therefore cannot come with a single form.
My idea would be an update ()
Update (answers; First (filter (answers; ID = Value (LabelAWbarbeiten_1_ID.Text)));
{Answer: TextInput_Anonse1_1.Text; Question_ID: Value ('TextInput_letzeFrageID + 1'.Text);
correct: Toggle_Anonse1.Value}) ;;
then he tells me with a error; "ID is a mandatory field"
ok, so i added ID, but now the error "ID is generated automatically by the server" - is that a bad joke?
There is a Share Point online list in the background.
I've been google for hours ...
Do you have an idea ?
Solved! Go to Solution.
You probably need to use the Patch function in this scenario:
Patch(
answers;
LookUp(answers; ID = Value (LabelAWbarbeiten_1_ID.Text));
{
Answer: TextInput_Anonse1_1.Text;
Question_ID: Value ('TextInput_letzeFrageID + 1'.Text);
correct: Toggle_Anonse1.Value
})
The Update function is used to replace an entire record in the data source, but what you want is to change a few fields of the record, so Patch is more appropriate here.
Hope this helps!
You probably need to use the Patch function in this scenario:
Patch(
answers;
LookUp(answers; ID = Value (LabelAWbarbeiten_1_ID.Text));
{
Answer: TextInput_Anonse1_1.Text;
Question_ID: Value ('TextInput_letzeFrageID + 1'.Text);
correct: Toggle_Anonse1.Value
})
The Update function is used to replace an entire record in the data source, but what you want is to change a few fields of the record, so Patch is more appropriate here.
Hope this helps!
thanks!
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
253 | |
235 | |
82 | |
36 | |
27 |
User | Count |
---|---|
313 | |
265 | |
120 | |
68 | |
44 |