Hello,
I want to Notify user if Lookup does not find a matching value in the Dataverse. So far I have managed to write below code on OnChange event of a txtSearch but I am not sure what is wrong. DelayOutput is set to true
If(
!IsBlank(""),
With(
{
wRecord: LookUp(
'Owners',
'Owner Email' = txtSearch.Value
)
},
If(
IsBlank(wRecord.'Managers-Email'),
Notify(
"No matching email found in the tool.",
NotificationType.Error
);
Reset(txtSearch)
)
)
)