Hi,
I'm developing a simple form with a Sharepoint List as the data source. Each of the highlighted questions below will show a form associated with the relevant Qs on the 2nd screen if "Yes" is selected. If it's "No" the linked form will be hidden.
First screen:

Second screen:

Most of the fields are mandatory so I have set the Submit button up to be disabled unless all required fields are complete using:
If(
(Form2_4.Valid) &&
(Form2_3.Valid) &&
(Form2_2.Valid) &&
(Form2.Valid),
DisplayMode.Edit,
DisplayMode.Disabled
)
However, if any of the forms above are hidden based on the screen 1 selections how do i bypass the need for that form to be "Valid"?
Any help greatly appreciated!!
Best,
Soph