Hi,
I need to patch some record into my sharepoint list using if function
I want to patch those values only if my radio button selected value is " Role case "
I've set some labels as variable in onselect property of my submit button and I'm using patch function on my on sucess of my form
If(Radio1.Selected="Role copy",Patch(SUAD,First(Filter(SUAD,ID=Form1.LastSubmit.ID)),{Module:var01},{Role:var02);
Notify("Your Submission has received",NotificationType.Success);ResetForm(Form1);NewForm(Form1)
Could anyone please help me on this
Solved! Go to Solution.
@Emptyglasses could you try the following adjustments to your code:
If(Radio1.Selected.Value="Role copy",Patch(SUAD,First(Filter(SUAD,ID=Form1.LastSubmit.ID)),{Module:var01, Role:var02}); ......
@Emptyglasses could you try the following adjustments to your code:
If(Radio1.Selected.Value="Role copy",Patch(SUAD,First(Filter(SUAD,ID=Form1.LastSubmit.ID)),{Module:var01, Role:var02}); ......
User | Count |
---|---|
252 | |
104 | |
94 | |
50 | |
39 |