@Devvj my list has multiple required field split up in other forms of the app. Do I have to induce them all the in the patch formula as well?
Generally to save the various forms and input the data to the SP I have a save button at the top of the page with the following:
Patch('Project Tracker',varFormData,BasicDetailsForm.Updates,ScopeForm.Updates,TimelinesForm.Updates,EstimatedSavingsForm.Updates, MilestonesForm.Updates, MilestoneEvidenceForm.Updates, EstimatedSavingsForm.Updates, NegotiatedSavingsForm.Updates, RealizedSavingsForm.Updates);
If(
IsEmpty(Errors('Project Tracker')),
Notify(
"Data successfully submitted",
NotificationType.Success
);
Navigate(HomeScreen),
Notify(
First(Errors('Project Tracker')).Message,
NotificationType.Error
)
)