I have a PowerApps app with 6 screens, and an Edit Form on each screen. The idea is to create ONE new record in a SharePoint list (modern) upon submit.
Patch(ListName,Defaults(ListName),EditForm1.Updates,EditForm2.Updates,EditForm3.Updates,EditFormT4.Updates,EditForm5.Updates, EditForm6.Updates);
The issue with the above method is that it works for text only columns, and doesn't work for radio buttons that are associated with choice columns.
How do I patch all field on Submit, especially the radio button and choice fields?
Solved! Go to Solution.
Hi @lostgical ,
Could you tell me are the choice columns single choice?
I assume that they are all single choice.
The reason why you met this problem is that using radio buttons to update choice column need some special formulas.
Please try this:
set the radio buttons' datacards' Update:
{Value:Radioname.Selected.Value} //replace Radioname with the related radio name, for example: radio1,radio2,...
Best regards,
I'd suggest you don't use forms and do it separately. You can either store the data into separate collections or make one big collection with all the data then patch it over.
Hi @lostgical ,
Could you tell me are the choice columns single choice?
I assume that they are all single choice.
The reason why you met this problem is that using radio buttons to update choice column need some special formulas.
Please try this:
set the radio buttons' datacards' Update:
{Value:Radioname.Selected.Value} //replace Radioname with the related radio name, for example: radio1,radio2,...
Best regards,
User | Count |
---|---|
256 | |
256 | |
82 | |
40 | |
30 |
User | Count |
---|---|
319 | |
269 | |
121 | |
68 | |
49 |