Forum Discussion
D_PBI
3 years agoPost Partisan
Retrieve columns from a Direct Query table into a Import Mode table, performing an aggregation too.
Hi I have the following Import Mode table named 'Sales': I also have the following Direct Query table named 'Branch': I would like to perform a SUM on the Amount column, per TYPE a...
- Anonymous2 years ago
Hi D_PBI ,
If you don't want to create a relationship, you can try creating a calcualted table using DAX.
Table 2 = FILTER(CROSSJOIN('Table','Table_1'),[Ref No.]=[Code])It's the result.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thamzaoui
3 years agoRegular Visitor
Hi
No need for DAX. You can do this easily with Matrix visualization
- D_PBI3 years agoPost Partisan
No, you can't. You need a method to join the two tables via DAX. There is no relationship set up in the model pane. I need to understand how to achieve my request in the OP.