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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
fmerieux
Frequent Visitor

Performance difference: Table.TransformColumns with function or New step after all data developped

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

  • adding the step within the Step2 within custom function
  • adding the step later on once all data are developped

 

Thanks for reading this and all possible answers 🙂

 

Have a great day

 

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi, @fmerieux ;

Is your problem solved?  If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.

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.
v-yalanwu-msft
Community Support
Community Support

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.

lbendlin
Super User
Super User

Implement two queries with the respective steps

Run Query Diagnostics on the last step of each query

Compare the query plans.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.