Forum Discussion
Link visuals from two different reports
- 4 years ago
You can create a DAX Query using DAX Studio to the first dataset, then in Power BI, create a connection to SQL SErver Analysis Services. The server name would be powerbi://api.powerbi.com/v1.0/Workspace Name, the database the name of the model.
Then expand the MDX/DAX query area and put in the DAX query. It needs to start with EVALUATE. So
EVALUATE
SUMMARIZECOLUMNS(blah, blah)
for example. That table will then import to your model, and you can create a quick visual on top of it.
You can create a DAX Query using DAX Studio to the first dataset, then in Power BI, create a connection to SQL SErver Analysis Services. The server name would be powerbi://api.powerbi.com/v1.0/Workspace Name, the database the name of the model.
Then expand the MDX/DAX query area and put in the DAX query. It needs to start with EVALUATE. So
EVALUATE
SUMMARIZECOLUMNS(blah, blah)
for example. That table will then import to your model, and you can create a quick visual on top of it.