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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm not sure how to search for this because I don't think anyone would recommend doing it, but if anyone knows the effect it has on performance, I would truly like to know. I am cleaning up a large number of datasets that I've inherited (almost 400) and I'm finding in many of them that a custom column will be created in Power Query, and then the next step is to just delete that column that was created. This is obviously pointless and as far as I can tell, whoever did this didn't know how to delete the step instead of just deleting the column that was created in the step.
The reason I am doing this project is because of the problems we have with refresh and query performance with these datasets and I am curious about these wasted steps. Would they have a noticeable impact on refresh time? Would they have any impact on report performance when the user is trying to view and interact with it?
Here's an example in case anyone is curious what I mean:
#"Added Currency BO $" = Table.AddColumn(#"Added BO Prep", "Currency BO $", each if [currencyty] = "US" or [currencyty] = "MX" then [#"BO Prep"]*[salesexrate] else [#"BO Prep"],type number),
#"Removed Columns" = Table.RemoveColumns(#"Added Currency BO $",{"BO Prep"}),
Solved! Go to Solution.
@Xaraja , All calculated columns add to data load/data refresh time. So if the refresh is slow, try to move few of them to source (Like DB query, DB view or table)
remove the unnecessary columns and measures.
The step you shared last.
The first step is adding a new custom column and next step is removing the column use in the calculation of previous step
@Xaraja , All calculated columns add to data load/data refresh time. So if the refresh is slow, try to move few of them to source (Like DB query, DB view or table)
remove the unnecessary columns and measures.
The step you shared last.
The first step is adding a new custom column and next step is removing the column use in the calculation of previous step
Thanks, I thought that must be the case.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 68 | |
| 50 | |
| 46 |