Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello everyone,
This is just about personal curiosity and understanding 😀
I've created some steps where a function is needed to iterate through grouped rows in order to apply steps for each grouped rows
Step 1 : Group the rows and aggregate with "All rows" column
#"GroupRows" = Table.Group(Source, {"Field1", "Field2"}, {{"All", each _, type table }})
Step 2: Create custom function
#"CreateFunction" = (#"Tbl" as table) as table=>
let...
in...
Step 3: Apply custom function to the "All rows" field
#"ApplyFunction " = Table.TransformColumns( #"GroupRows",{"All", each #"! Create custom Function"(_)})
My question is:
Let's say I'd like to add a Table.SelectRows(...) step
Is there a big performance difference between
Thanks for reading this and all possible answers 🙂
Have a great day
Hi, @fmerieux ;
Hi, @fmerieux ;
Avoid calculated columns if you can. They're often not necessary and just end up bloating your model.
You could try to Create a new measure...
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Implement two queries with the respective steps
Run Query Diagnostics on the last step of each query
Compare the query plans.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Check out the July 2026 Power BI update to learn about new features.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 3 | |
| 3 | |
| 2 |