Forum Discussion
Imre_P
1 year agoNew Member
Hidden columns from a Power BI Semantic Model
Hi, I'd like to Import tables from a Power BI Semantic Model in Power Query so that I can optimize performance later on. When Getting the data, I am unable to reference Hidden columns of the...
- 1 year ago
Are you using the analysis services connector?
Suppling a Dax query should show them
I.e.
Evaluate
Sales
v-csrikanth
1 year agoCommunity Support
Hi Imre_P
Thank you for being part of the Microsoft Fabric Community.
If you already know the names of the hidden columns, try modifying the M query manually:
-
Get Data from Power BI Semantic Model. Transform data->New Source-> BI Semantic model and connect to the model.
- Modify the M Query as below:
Advance Editor
Table.SelectColumns(Source, {"VisibleColumn1", "HiddenColumn1", "HiddenColumn2"})
If the hidden columns are available, they will appear in your dataset.
If the above information is helpful, please give us Kudos and mark the response as Accepted as solution.
Best Regards,
Community Support Team _ C Srikanth.
PImre
1 year agoFrequent Visitor
I tried this but the hidden columns were not recognized even if I named them in M.