Hi all..
i want to know how am i suppose to properly distributes a single SP Lists Which contain a 110 fields, into multiple edit form?
the idea is, after the user submit all the fields, they want to review it again, so i need to display it again in and edit form. the problem is, i have to devide it into a few (10) different form because there's too much field to show.
this is the continuity from my previous thread here, which is already solved with Master @yashag2255 .
i open to any suggestion right now for i am desperate.
thanks,
regards.
pytbyt
Solved! Go to Solution.
Hi @PytByt ,
I've tested the formula in the issue that you posted, it works.
So if you want to create a record by using 10 forms, I suggest you use
Patch( 'SP List-1', Defaults('SP List-1'), Form1.Updates, Form2.Updates, Form3.Updates, ... ... Form9.Updates, Form10.Updates )
In this issue, do you want to edit the 10 forms and submit them to the same record?
Try this:
SubmitForm(Form1);SubmitForm(Form2);.......;SubmitForm(Form10)
Set all the form's Item to the same Item and DefaultMode to FormMode.Edit.
Best regards,
Community Support Team _ Phoebe Liu
Hi @PytByt ,
I've tested the formula in the issue that you posted, it works.
So if you want to create a record by using 10 forms, I suggest you use
Patch( 'SP List-1', Defaults('SP List-1'), Form1.Updates, Form2.Updates, Form3.Updates, ... ... Form9.Updates, Form10.Updates )
In this issue, do you want to edit the 10 forms and submit them to the same record?
Try this:
SubmitForm(Form1);SubmitForm(Form2);.......;SubmitForm(Form10)
Set all the form's Item to the same Item and DefaultMode to FormMode.Edit.
Best regards,
Community Support Team _ Phoebe Liu
Im using your formula and went great.
But...
I have a road bump here when i try to add each attchment data card in every form (10 form i've got) so, there's 10 attachement total distributed in each form.
The problem is, the attachment from each form (form 1 through 10) NOT SAVING to the SP list. i already tried almost everything in the forum.
I wanna know, is there something i missing out that makes the attachment not working?
here is a few image reference for my distributed from with each attachment data card:
And this is the exact formula i use in Button Save (for all the form obviously):
Patch('_Onboarding List', Gallery2.Selected, FormTab1.Updates, FormTab2.Updates, FormTab3.Updates, FormTab4.Updates, FormTab5.Updates, FormTab6.Updates);
Notify("Data Updated successfully", NotificationType.Success);
Navigate(LandingPage, ScreenTransition.CoverRight);
Please tell why the attachment wont save to my SP List? i need to get the attachment work ASAP.
Thanks.
Regards,
pytbyt
User | Count |
---|---|
139 | |
129 | |
75 | |
74 | |
69 |
User | Count |
---|---|
221 | |
135 | |
78 | |
58 | |
56 |