Hi
I'm making an app that has 4 edit forms. (To add new customers and information)
Once all the edit forms are filled in, I want to submit all the information gathered into a single line of a SharePoint list.
The SharePoint list already has data and is visible on another screen within the app.
There are 60 columns in each row of the Sharepoint list.
I currently have one button that submits the information added from all 4 edit forms, but it spreads it over 4 rows.
SubmitForm(EditGrowerDetails); SubmitForm(EditAssetDetails); SubmitForm(EditOperatorDetails); SubmitForm(EditSubscriptionDetails);
Is there a way to submit the information from all edit forms into one row with one button click?