Forum Discussion
DAX query to extract data from SSAS model filtering a specific value in a field
LionelR Can you just connect to the cube, suck in everything and then go back and filter that table in your query for that table? Use the default navigator and select everything instead of using advanced to enter your own DAX.
Hi Greg,
Thanks for your response! I have tried this already and successfully created a report in Power Bi desktop, but having issues publishing due to gateway error.
hence, I want to import the data with specific filter criteria and be able to extract data using DAX spanning across different linked tables in the model
thanks for your help!
- Anonymous5 years agoNot applicable
HI LionelR,
>>Thanks for your response! I have tried this already and successfully created a report in Power Bi desktop, but having issues publishing due to gateway error.
I guess it would relate to power bi security and privacy.
When you working on desktop side, it has enough permission to process these functions; when you publish to power bi service side, obviously you do not have full permissions to process these queries host on power bi service. Some of the functions will be blocked due to security reasons. (this also apply to other types of script and codes such as r script, python that host in your report)Power BI Security#data-storage-security
Regards,
Xiaoxin Sheng
- Greg_Deckler6 years agoCommunity Champion
LionelR - Odd, I know it's possible to import data from cubes: https://radacad.com/add-or-edit-columns-when-importing-data-from-analysis-services-into-power-bi
You could check the Issues forum here:
https://community.powerbi.com/t5/Issues/idb-p/Issues
And if it is not there, then you could post it.
If you have Pro account you could try to open a support ticket. If you have a Pro account it is free. Go to https://support.powerbi.com. Scroll down and click "CREATE SUPPORT TICKET".- LionelR6 years agoFrequent Visitor
Hi Greg,
Thanks for your response!
I am working out how to restrict data using DAX while importing, to a specific value in a field in a model with multiple tables.
Do you know if I could use a different syntax? the above formula restricts and only shows data from a single table and other data from linked tables are lost.
Thanks
- Greg_Deckler6 years agoCommunity Champion
LionelR - No, but you could create a new query for the other table and then use the table you imported in order to either do a Merge or filter the new table coming in, effectively accomplishing what you want, I *think*. If I understand correctly, you want to import this table within only the rows you want and then have the other related tables also have only the rows that correspond with the rows in this first table that you are importing. Right?