Hello @uiit3155 ,
A way to put validation in PowerApps is to use the BorderColor of your form control. Inside the bordercolor, you write the condition you want :
If(IsBlank(Self.Text),Red,Blue)
Then in the parameter DisplayMode of your Submit Button, you can watch in an If condition if any of the field have a red border color :
If(textbox1.borderColor = Red || textbox2.borderColor = Red ||textbox3.borderColor = Red || ....,
Disabled, Edit)
So in your form control, you can have the formula you want to tell the user the value does not respect the validation, and after you just watch if the border color is red or not.
Tell me if It helps you 🙂
Henri