Hi,
I am trying to provide a sign-off capability for my managers so that they can provide a sign off in one click for all the items that fall under their purview. The entry of the data in the textboxes is based on multiple conditions and if any condition fails, it provides an error message for that item. Now the Managers should only be able to provide a sign-off if all the items are error free i.e. the error box is empty/blank.
Currently, the managers are able to click on the button even is one error box is blank while others may still have errors. And the sign-off is flagged as yes for all the items under them. I want that the button should be disabled, until and unless the errors from all the items are removed or taken care of.
The formula I am using is : If(
!IsBlank(DatePicker.SelectedDate) && IsBlank(ErrorMsglbl.Text) && !IsBlank(Input_comments.Text) && !IsBlank(Dropdown.Selected.Value),UpdateIf('New Projects',User().Email in 'GM email id',{'Sign off status': "Yes"}),Notify("The data is invalid to sign-off on the projects",NotificationType.Error))
Please provide some guidance/help on this matter. What can I change in the formula?