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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
In the Power BI model, the field names are not fully aligned with those in Power Query (PQ). My data source is Dynamics 365 (Dataverse), and the specific connection code in Power Query is:
= CommonDataService.Database("***.crm.dynamics.com", [CreateNavigationProperties=false])
After importing the data and performing a series of steps in Power Query (including renaming fields), I successfully loaded the data into the Power BI model. However, I found that while some of the renamed fields took effect as intended, others did not. I used the following code:
= Table.RenameColumns(#"Removed Other Columns", {{"accountid", "Account ID"}, {"name", "Account Name"}})
the changes did not fully reflect in the model. This issue persists even when I try the same query in a brand-new Power BI file, and it occurs across several of the tables I’m using.
As a result, I have to manually rename the fields again inside the Power BI model, which is inconvenient and may cause problems when making further updates.
My Rename Code:
Last Step in PQ(the way it should be):
Field in Power BI:
Solved! Go to Solution.
After submitting support ticket to MS Official, the support guide me to the answer.
In conclusion, it seems the issue I'm experiencing is a feature rather than a bug. And there is no an option to enable or disable it based on user preference. Manually renaming the fields again inside the Power BI model is the only way.
After submitting support ticket to MS Official, the support guide me to the answer.
In conclusion, it seems the issue I'm experiencing is a feature rather than a bug. And there is no an option to enable or disable it based on user preference. Manually renaming the fields again inside the Power BI model is the only way.
Hi @PaiYa,
Thank you for your update. I'm glad to hear your issue has been resolved. Please continue using the Fabric community.
Best Regards,
Harshitha.
Hi @PaiYa,
I would also take a moment to thank @jaineshp, @HarishKM for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.
Best Regards,
Harshitha.
Hi @PaiYa,
I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We are always here to support you.
Regards,
Harshitha.
Hi @v-hjannapu
I try almost each way offered, but none of them worked. I think it may be a "bug" of application. Anyway,
thank them for their kindly help and your attention.
Hi @PaiYa
,If you are still unable to solve the issue you can reach out to Microsoft Support by raising a ticket with Microsoft Support.
Please refer below link on how to raise a contact support or support ticket.
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
Best Regards,
Harshitha.
Hey @v-hjannapu,
Thank you for the kind recognition - always happy to contribute to our community's success!
Best Regards,
Jainesh Poojara | Power BI Developer
@PaiYa Hey,
Kindly follow below steps.
Some renamed fields in Power Query are not correctly reflected in the Power BI model.
This inconsistency forces manual renaming within the model, leading to potential update challenges.
Ensure renaming is applied as the final step before loading data to improve alignment.
Verify that all transformations propagate correctly from Power Query to the model.
Thanks
Harish KM
If these steps help resolve your issue, your acknowledgment would be greatly appreciated.
Hi @PaiYa ,
I have never experienced a question like this, and without further information is difficult to pinpoint what is happening. What I can suggest is that you try and rename the columns in the Desktop and not in Power Query, this will add a new step to the Power Query also, but it should persist the name in the model.
Can you please try and let me know the result.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @MFelix , thanks for you reply.
I'm not sure whether your reference to "Desktop" means Power BI Desktop. My workflow is: import data from Dynamics 365 → Transform Data → edit data in Power Query → load into Power BI. I'm not renaming fields in a local Excel file or anything like that — I'm renaming them in Power BI Desktop during the Transform Data step, but the changes are not taking effect.
Hi @PaiYa ,
When I refer Desktop is the Power BI Desktop. What I mean is after you have done the load from the Power Query just double click the column name or Right click and select rename the column. Has I refer this will generate a step on Power Query automatically.
Then refresh the model and check if the name persists or not.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHey @PaiYa,
Cache Clear First: Always try clearing Power BI's cache (File > Options > Data Load > Clear Cache). It's often the culprit.
PQ Step Order: Make sure your RenameColumns step is after any filtering/removing steps that might use old names.
Simple Test: Try renaming just one problematic column in a new, simple query. Does that one stick?
Update Power BI: Old versions can have quirky bugs. Ensure your Desktop is current.
Last Resort: If nothing else, sometimes removing the column and immediately adding it back with the new name in PQ forces it.
Hope this helps you ditch the double-renaming!
Did it work? ✔ Give a Kudo • Mark as Solution – help others too!
Best regards,
Jainesh Poojara / Power BI Developer
Hi @jaineshp, thanks for your reply.
Hey @PaiYa,
Looking at your screenshots and the issue you're describing, this appears to be a known behavior with Dataverse/Dynamics 365 connections in Power BI. Let me provide you with some targeted solutions:
This is a known issue with Dataverse connections where Power BI's metadata cache doesn't always reflect Power Query column renames, especially for system fields like accountid, name, etc.
The cache clearing option is actually here:
What I meant by "remove and add back":
If Power Query renames still don't work:
Hi @jaineshp , thanks for your reply. Best Regards.
Hey @PaiYa,
Try modifying your connection with additional parameters:
= CommonDataService.Database("***.crm.dynamics.com", [
CreateNavigationProperties=false,
UseDisplayNames=false,
Timeout=#duration(0,0,10,0) // Add timeout parameter
])
Since this is a known Dataverse connector issue, consider using:
Your OData URL would be: https://[yourorg].crm.dynamics.com/api/data/v9.2/
Sometimes Power BI's cache is deeper than the UI option:
If you're comfortable with registry edits:
Create a custom view in Dataverse with your desired column names, then connect to that view instead of the raw table. This bypasses the metadata caching issue entirely.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 42 | |
| 30 | |
| 24 |