The Button is greyed out after the formula I put but the entry is still coming duplicate and it's allowing the user to get the entry into SharePoint.
If(
IsBlank(DataCardValue33.Text) ||
IsBlank(DataCardValue25.SelectedDate) ||
CountRows(
Filter(UtilizationException,
Shiftdate=DataCardValue25.SelectedDate &&
Enterprise_ID=DataCardValue26.Text &&
LOB=DataCardValue27.Text)
) > 0,
Disabled,
Edit
)
Whereas, it should stop the user by not allow the button to live. it should be greyed out.

Do we need to write few code OnSlected =Set(varRecord(lookup(UtilizationException,Shiftdate=DataCardValue25.SelectedDate &&
Enterprise_ID=DataCardValue26.Text &&
LOB=DataCardValue27.Text));
If(IsBlank(varRecord.ID),
Set(varShowSpinner,true);SubmitForm(Form1);Notify("Data Uploaded Successfully",NotificationType.Success,2000);ResetForm(Form1);Set(varShowSpinner,false)..
Just a thought.. I know there is some issue with the formula. it's not correctly formated.