I have tried a coulple different ways to hide the Icon/button that launches/submits the patch but without success.
What am I missing?
Formula #1: If(IsEmpty(txtPurchaseFrom.Text) || IsEmpty(txtAddress.Text) || IsEmpty(txtCity.Text) || IsEmpty(txtProjectNumber.Text) || IsEmpty(txtTaskNumber.Text),false,true) && gblAction = "edit" || gblAction = "new"
Formula #2: f(!IsEmpty(txtPurchaseFrom.Text) || !IsEmpty(txtAddress.Text) || !IsEmpty(txtCity.Text) || !IsEmpty(txtProjectNumber.Text) || !IsEmpty(txtTaskNumber.Text),false,true) && gblAction = "edit" || gblAction = "new"
Formula #3: If(!IsBlank(txtPurchaseFrom.Text) || !IsBlank(txtAddress.Text) || !IsBlank(txtCity.Text) || !IsBlank(txtProjectNumber.Text) || !IsBlank(txtTaskNumber.Text),false,true) && gblAction = "edit" || gblAction = "new"
Formula #4: If(And(!IsBlank(txtPurchaseFrom.Text), !IsBlank(txtAddress.Text), !IsBlank(txtCity.Text), !IsBlank(txtProjectNumber.Text), !IsBlank(txtTaskNumber.Text)),false,true) && gblAction = "edit" || gblAction = "new"