Based on the required field input “Save” button will be enabled.

High level resolution steps

Detailed resolution steps

Step 1: I have created one form that contain all the required labels and text input fields.

Enable Button Based on Text Input

Step 2: Now in “Save” button’s Display Mode property I have to add formula.


If(
   !IsBlank(TextInput_first.Text) && 
   !IsBlank(TextInput_middle.Text) ||  
   !IsBlank(TextInput_last.Text) &&  
   !IsBlank(TextInput_department.Text), 
   DisplayMode.Edit, 
   DisplayMode.Disabled 
) 
    

Formula Explanation: If there is data in the mention fields “TextInput_first” , “TextInput_last” and
“TextInput_department” then “Save” button will get enabled.

Output

As we can see in the output screen all the mandatory fields have input so “Save” button will get enabled.

PowerApps Save button enabled after all mandatory fields are filled.

Leave a Reply

Your email address will not be published. Required fields are marked *