
Hi @evanscona ,
Please try below formula:
If(
Dropdown.Selected.Value = "ASSIGNED TO DANIELTRANSIT",
PowerAppsNotification.SendPushNotification({
recipients: ["JohnPeters@gmail.com"],
Message:"Alert, New Request!" & ThisItem.'Ticket Number',
openApp: true})
)
It means only when the dropdown selected value is "ASSIGNED TO DANIELTRANSIT", PowerApps will send a push notification to the recipient.
Best regards,