I have a dropdown that I need to select a specific one and make text input mandatory before saving.
I'm new with PowerApps and I didn't do it with the data card.
Note: The Status Field and the ID Field.

I have a dropdown that I need to select a specific one and make text input mandatory before saving.
I'm new with PowerApps and I didn't do it with the data card.
Note: The Status Field and the ID Field.
hi @rodriguesn__ This is a bit tricky, but you can do a workaround by trying different functions. ONSELECT of the button.
OnSelect property of the button.. put:
If (Status.selected.Value="Approved", Notify("This is Empty",NotificationType.Error,3000),then put a submit function or Patch function here)
If(Status.selected.Value="Approved", Notify("This is Empty",NotificationType.Error,3000),then put a submit function or Patch function here)
Or you can put a code in the visibility property of the Button or Displaymode property.
If(Status.Selected.Value = "Approved",DisplayMode.Disabled,DisplayMode.Edit)..... then create a small error label below the Text Input...
that reads.... this field must not be empty
visible property of the error label : put.... If (IsBlank(TextInput),true,false)
So many ways this can be done.
Let me know if this works for you.