Forum Discussion
Replace import table with direct query table
- 1 year ago
Hi Max_25
Unfortunately, it's not possible to simply “switch” a table from Import mode to DirectQuery. These are fundamentally different storage modes, and there’s no direct conversion path between them.Your idea — to load the same table again as DirectQuery, rename it to match the original name, and rewire the relationships — can technically work, but you should be aware of some limitations:
-
Not all DAX functions that work in Import mode are supported in DirectQuery. For example, advanced logic with
CALCULATE,FILTER, orRANKXmight fail or behave unexpectedly. -
Performance might be impacted, especially if your model is complex or contains many relationships.
-
The behavior of relationships, calculated columns, and calculated tables may differ in DirectQuery mode.
If you go this route, I strongly recommend testing every calculation in your report carefully and being prepared to make adjustments.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
-
Hi Max_25 there is no direct way to switch from import to direct query, simple things that you can do is
For Realationships,measures and roles : Save the BIM model of the exisiting report from Tabular editor so that you can have the copy of same Realtionships,Measures or User Roles if any and after creating new dashbaord with direct query you can paste it to that report with tabular editor.
For Table Transformations:
You can have the copy of M query of each table and copy the same
I hope this will help you in this transformation
thank you