Hi everyone,
I have a PowerApps form created from a SharePoint list. The requirement is:
Could anyone advise?
Best regards,
Solved! Go to Solution.
You could add a "Save as New" button on the form and use the Patch() to create the new item in SharePoint. Along with the Patch() you would need to reset the form and close it.
Example formula for the button:
Patch('SPOListName', Defaults('SPOListName'), {SPOFieldName1:CopyValue1 , SPOFieldName2:CopyValue2, ...});
ResetForm(SharePointForm1);
RequestHide()
You will need to call out each field that you are going to set in the new record in the {....} of the Patch().
You could add a "Save as New" button on the form and use the Patch() to create the new item in SharePoint. Along with the Patch() you would need to reset the form and close it.
Example formula for the button:
Patch('SPOListName', Defaults('SPOListName'), {SPOFieldName1:CopyValue1 , SPOFieldName2:CopyValue2, ...});
ResetForm(SharePointForm1);
RequestHide()
You will need to call out each field that you are going to set in the new record in the {....} of the Patch().
Thank you so much for this and for your prompt response. Working exactly as instructed.
User | Count |
---|---|
134 | |
131 | |
97 | |
77 | |
74 |
User | Count |
---|---|
206 | |
197 | |
69 | |
59 | |
52 |