Hi,
My power app has a radio button 1 for copy record and 2 for creating record
for the first 1 button ,the user will be able to copy the record and submit
and for the 2 user has to manually enter the details to submit the form
I'm using label's for autopopulating the record from the sharepoint list for the first radio button
Label text property : LookUp(SUAD,'Employee Name'=ComboBox1.Selected.Result,Module)
when submitting the form I'm setting these labels as variable
on select of submit button : Set(var01,Label17.Text);Set(var02,Label15.Text);submitform(form1)
on success of my form : If(Radio1.Selected.Value="Role copy",Patch(SUAD,First(Filter(SUAD,ID=Form1.LastSubmit.ID)),{M1:var01},{R1:var02}));Notify("Your Submission has received",NotificationType.Success);ResetForm(Form1);NewForm(Form1)
The data is not getting recorded into my sharepoint list and the form isn't resetting after submission, it is shown as nothing to display
Could anyone help to figure out the exact issue