Forum Discussion
Different Filed Name Between Power BI and Power Query
- 1 year ago
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 jaineshp , thanks for your reply. Best Regards.
- Solution 1: In fact, I have "Change Type" step before. And I try again in the test File(I remain only one column and remove all transform step except Data Load and Rename.). Still no,
- Solution 2: It seems that you could not combine Remove Column and Rename Column in one step as this way.
- Solution 3:
- Solution 4: I found it! Clear Cache and refresh the data. Still no.
- Solution 5: still no.
- Solution 6: That's what I did. But as I said in the original post, " is inconvenient and may cause problems when making further updates.".
Hey PaiYa,
Solution 1: Connection String Parameter Method
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
])
Solution 2: Complete Connection Recreation
- Delete the existing data source connection entirely (not just refresh)
- Close Power BI Desktop completely
- Clear Windows Credential Manager:
- Windows Key + R → control keymgr.dll
- Remove any Dynamics/CRM related credentials
- Reopen Power BI and create a fresh connection
- Apply renames immediately after connection (before any other transformations)
Solution 3: Alternative Data Source Method
Since this is a known Dataverse connector issue, consider using:
- OData feed instead of Dataverse connector
- Dynamics 365 (online) connector (if available)
- Web API direct connection
Your OData URL would be: https://[yourorg].crm.dynamics.com/api/data/v9.2/
Solution 4: PowerShell Cache Clear
Sometimes Power BI's cache is deeper than the UI option:
- Close Power BI completely
- Navigate to: %localappdata%\Microsoft\Power BI Desktop\
- Delete the entire AnalysisServicesWorkspaces folder
- Restart Power BI
Solution 5: Registry-Level Fix (Advanced)
If you're comfortable with registry edits:
- Close Power BI
- Navigate to: HKEY_CURRENT_USER\Software\Microsoft\Microsoft Power BI Desktop\
- Look for cache-related keys and delete them
- Restart Power BI
Solution 6: Dataverse View Method
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.