Hey,
I am running into an issue where I have two forms on a powerapps screen and one button to submit the form. I have the button set up to be disabled if two boxes in each form are empty or blank, but once I test the app and fill out the first form it allows me to submit the form without the second form being filled in. it is not until after I have filled in the second form and cleared one of the required fields that the button works as intended and doesn't let me click it. Any help with this issue is appreciated. Here's the code for disabling the button:
If(And(Not(IsBlank(DataCardValue36.Text)), (Not(IsBlank(DataCardValue2.Text))), Not(IsEmpty(DataCardValue67.SelectedItems)), Not(IsEmpty(DataCardValue68.SelectedItems))), DisplayMode.Edit, DisplayMode.Disabled)
It's not the cleanest code but it should have worked. also here's the code for the OnSelect of the button if it helps:
Patch('Test list',Defaults('Test list'),Form1.Updates,Form2.Updates);Navigate('Submittal Screen',Fade)