Hello,
I have a Power App I built for tracking certain tasks within my company. The main entry/edit form utilizes modern Tab Lists and Modern Combo boxes as part of a modern form. Depending on the tab selected, different combo boxes are visible, some of which are required. I have the combo boxes set to use entries from a different SharePoint list and use the DefaultSelectedItems function using the value {Title:ThisItem.ColumnName'}. The Update formula are set to cboxValue.Selected.ColumnName. The problem I am running into is I have a "Submit" button that uses an if statement OnSelect:
If(Form1.Valid, SubmitForm(Form1),Notify("Required field(s) empty. Please review form to ensure all *required fields have data.",NotificationType.Error))
If the user does not click and view every tab, the Valid function does not recognize the form as valid and triggers the error notification. If you click through all the tabs allowing the combo boxes to become visible and appear to load the value, then it submits correctly. Any ideas?