Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Evogelpohl
Helper V
Helper V

Active Directory - Get Members of Dynamic Group

Using the Active Directory (AD) connector in Power Query (latest ver), I'm able to view all groups, but i'm not able to 'Expand' to Group.Member on AD groups that are Dynamic, or those groups that use LDAP queries to populate them.

 

Is this a feature/limitation of AD or a bug perhaps?

 

Here's the code that should return all users in a group.   

 

let
    Source = ActiveDirectory.Domains("DOMAIN.com"),
    DOMAIN.com = Source{[Domain="DOMAIN.com"]}[#"Object Categories"],
    group1 = DOMAIN.com{[Category="group"]}[Objects],
    #"Expanded securityPrincipal" = Table.ExpandRecordColumn(group1, "securityPrincipal", {"sAMAccountName"}, {"securityPrincipal.sAMAccountName"}),
    #"Filtered Rows" = Table.SelectRows(#"Expanded securityPrincipal", each [securityPrincipal.sAMAccountName] = "ALL-EmplsAndContractors"),
    #"Expanded group" = Table.ExpandRecordColumn(#"Filtered Rows", "group", {"member"}, {"group.member"}),
    #"Expanded group.member" = Table.ExpandListColumn(#"Expanded group", "group.member")
in
    #"Expanded group.member"
3 REPLIES 3
I_Like_Pi
Resolver II
Resolver II

I found a post here with some code that I am trying to adapt

 

https://matt40k.uk/2016/06/getting-a-list-of-ad-groups-and-their-members-using-powerquery/

 

It's a blog post.

If I get anywhere I will update this post.

mpark14845
New Member

Anyone get an answer on this?  I would really like to get the number of users per group.  I can see the count when I click on the List field for the record but would love to bring this value forward to report on it.

lukasdrbo
New Member

Hi,

 

did you resolve this issue or not ?

 

thank you,

 

best regards,

 

Lukas

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors