Hello,
I'm quite new to PowerApps and trying to create profile registration and modification app that is connected to a SharePoint list. I created different tabs by using 3 different buttons (see below). On every page, I have the same footer with the names of the tabs, an edit, save and delete button. One of the fields (Years of Experience), which is located under the "work-related information" tab is compulsory, unfortunately, I cannot ensure the save button to patch the data to SharePoint because it keeps telling me Years of Experience, which does not appear in Personal Information and Profile tabs, is required.

My current save button patches information entered in each individual tab to SharePoint with the below formula (obviously, the field names and navigation to next screen changes from tab to tab).
Patch(
'MySPlist',
Defaults('MySPlist'),
{
'SPColumn1':Label8,
'SPColumn2':Label9,
'SPColumn3':Label10,
'SPColumn4':DataCardValue5.Selected,
'SPColumn5':Label11,
'SPColumn6':DataCardValue8.SelectedItems,
'SPColumn7':DataCardValue10.SelectedDate
}
);
Navigate(WorkRelated)
As I mentioned because my compulsory field is located only in 1 tab, so I keep getting an error. What is the best practice or the recommended method to submit the data to SharePoint?
Thanks