Building a Leave Request Application from scratch with Power Apps and Power Automate Part 2

Опубликовано: 11 Июль 2026
на канале: Babatunde Akande
10,577
105

This is the second part of the last video on how to build a leave request application. In this video, I covered a few things like showing the request history in a gallery, auto-populating the logged-in user's details, navigating to a success screen when a request is successfully submitted. etc

Below is the formula used in the video to auto-populate the Person field:

{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Email: MyProfile.Mail,
Claims: "i:0#.f|membership|" & MyProfile.Mail,
DisplayName: MyProfile.DisplayName,
JobTitle: MyProfile.JobTitle,
Department: MyProfile.Department,
Picture: User().Image
}