Here are some practical examples of the Confirm() function in Microsoft Power Apps
🧩 Scenario
🔹 1. Basic Confirmation (Delete Record)
If(
Confirm("Are you sure you want to delete this record?"),
Remove(Employees, ThisItem)
)
✅ Shows dialog → deletes only if user clicks
deepika20.hashnode.dev2 min read