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

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

Reply
moltra_1
Regular Visitor

using IF in Power query

I am trying to run the below M code in Power query,

 

 

(ADGroup as text) as list =>

let

    runCount = 1,

    getad = (parent as text) as list =>

            let  

                runCount = runCount + 1,

                childern = fctGetADGroupGroups(parent),

                Ad = List.Combine({{parent}, List.Accumulate(childern, {}, (a , b) =>  List.Combine({a,@getad(b)}))})

            in

            Ad,

            Result =  if runCount < 5 then getad( ADGroup ) else Result

in

   Result

 

.Without the if statement I am getting the error "Evaluation resulted in a stack overflow and cannot continue.

I am trying to pull up the recursive Active Directory groups.

 

3 REPLIES 3
Anonymous
Not applicable

Hi @moltra_1 ,

 

It seems that this if statement is controlling the depth of the recursion. Why would you want to remove it?

Try increasing or decreasing the number in the if statement.

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

I cannot get the IF statement to work.  I am trying to put it in there to control the recursive depth.  I should have been more clear in my initial post.

 

With the IF statement, I am getting no Syntax errors, but get the following error.  

 

An error occurred in the ‘’ query. Expression.Error: The name 'Result' wasn't recognized. Make sure it's spelled correctly.

moltra_1
Regular Visitor

Here is where I got the power querys from.  using power query to recursively extract data from Active Directory 

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 Kudoed Authors