Hello
I am brand spanking new to power apps. I have finally managed to create a form that has four pages and can get it to submit to my SharePoint list. On the last page of my form I have a Submit button. All fields on the form will be required. I would like the submit button to be greyed out if fields are left blank. If the button is greyed out, when you hover over the button there is a "Please ensure all fields are complete" tooltip. Now, I can get this to work on the first page of the form with this code:
If(IsBlank(SharePointForm1) || SharePointForm1.Valid,DisplayMode.Edit,DisplayMode.Disabled)
Is there a way to get it to work for the other three pages of the form?
Help would very much be appreciated.