web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / AD Users Drop Down Lim...
Power Apps
Answered

AD Users Drop Down Limits 100

(0) ShareShare
ReportReport
Posted on by 703

Hi All - I'm trying to create a combo box that shows a list for all my AD users. I have 390 users. If I try this 

 

Collect( AADData, AzureAD.GetGroupMembers("e2450b0d-82eb-4ad5-bd01-06a85001b1f6").value) 

where e2450b0d-82eb-4ad5-bd01-06a85001b1f6 is my All Users group that has 390 Total Members - I only get about 100 - if I try 

Distinct(
Filter(
Office365Users.SearchUser(),
Len(DisplayName) <> 0
),
DisplayName
)

 

I get different names - but still only about 100 

 

Data Row limit is 500  - all other obvious issues like display name etc have been checked.  

 

Ther's gotta be some setting or something I'm missing 

 

All info welcome 

thx 

Categories:
I have the same question (0)
  • LaurensM Profile Picture
    12,516 Moderator on at

    Hi @ctedesco3307,

     

    By default the V1 search user will only return 100 unless defined otherwise. You could use the V2 instead - which returns 999 by default (or 500 since your row limit is capped at 500). 

    I will give you both options, but generally it is best practice to use the newer versions of functions/formulas:

     

    //V1
    Office365Users.SearchUser({top: 500})
    
    //V2
    Office365Users.SearchUserV2({isSearchTermRequired:false}).value

     

    If this solves your question, would you be so kind as to accept it as a solution.

    Thanks!

  • ctedesco3307 Profile Picture
    703 on at

    @LaurensM - thanks - its not liking the rest of my query though 

    These both  return nothing - I can't even activate the ddown

    Filter(Office365Users.SearchUserV2({top:500}).value, !IsBlank(DisplayName))

    Distinct(Filter(Office365Users.SearchUserV2().value,Len(DisplayName) > 0),DisplayName)

     

  • Verified answer
    LaurensM Profile Picture
    12,516 Moderator on at

    Hi @ctedesco3307,

     

    The code between curly brackets is required in the V2 to get a full list without a search term:

    Distinct(
     Filter(
     Office365Users.SearchUserV2({isSearchTermRequired:false}).value,
     Len(DisplayName) > 0
     ),DisplayName
    )

     

    I hope this helps!

  • ctedesco3307 Profile Picture
    703 on at

    @LaurensM Thank you Thank you!! 

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
Kalathiya Profile Picture

Kalathiya 321 Super User 2026 Season 1

#2
WarrenBelz Profile Picture

WarrenBelz 289 Most Valuable Professional

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 200 Super User 2026 Season 1

Last 30 days Overall leaderboard