Skip to main content
Community site session details

Community site session details

Session Id : LsrLn4IftAqh/e+nV+UcY1
Power Apps - Building Power Apps
Answered

Setting Field Default Value to be the logged in persons manager

Like (0) ShareShare
ReportReport
Posted on 17 Sep 2019 15:31:02 by 17

Hi

 

I am using powerapps to populate a sharepoint list.

 

I want to pass a value of the current users manager over to sharepoint via a field on the form when the form is submitted - I dont want the user to pick the manager, i want the system to auto populate it.

 

I have been using the Office365Users.Manager string but its just not bringing the data back - is there a simple way to do this? (note: I can pass the users department over no problem using Office365Users.MyProfile().Department its the manager piece that is causing me trouble)

 

Thanks in advance 

 

Graham

Categories:
  • The_General Profile Picture
    17 on 18 Sep 2019 at 09:08:57
    Re: Setting Field Default Value to be the logged in persons manager

    Thanks - this is just what I needed. Appreciate the help.

     

    I was missing the User()Email bit and struggled to find any clear info on the syntax

  • v-xida-msft Profile Picture
    on 18 Sep 2019 at 06:12:49
    Re: Setting Field Default Value to be the logged in persons manager

    Hi @The_General ,

    Which type column do you use to store the Manager user value in your SP list? Single text column or Person type column?

    Do you want to auto-populate the field in your Edit form based on the curret login user's manager?

     

    1. If you use Person type column to store the Manager user value in your SP List:2.JPG

    Set the DefaultSelectedItems property of the ComboBox within the Person field data card to following:

    If(
     EditForm1.Mode = FormMode.New,
     { 
     Claims: "i:0#.f|membership|" & Lower(Office365Users.Manager(User().Email).Mail),
     DisplayName: Office365Users.Manager(User().Email).DisplayName,
     Email: Office365Users.Manager(User().Email).Mail,
     Department: "",
     JobTitle: "", 
     Picture: ""
     },
     Parent.Default
    )

    2. If you use Single text type column store the Manager user value in your SP List:

    Set the Default property of the Text Input box within the Person field data card to following:

    Office365Users.Manager(User().Email).DisplayName

    More details about setting a default value for Person field in SP list, please check the following thread:

    https://powerusers.microsoft.com/t5/General-Discussion/How-to-set-a-defaul-value-for-a-person-fields-in-a-SharePoint/td-p/187880

     

    Best regards,

  • Verified answer
    RezaDorrani Profile Picture
    12,141 on 17 Sep 2019 at 17:06:23
    Re: Setting Field Default Value to be the logged in persons manager

    Hi @The_General 

     

    Use Office365Users.ManagerV2(User().Email).displayName

     

    Regards,

    Reza Dorrani

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410 Super User 2025 Season 2

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 2

Loading complete