Forum Discussion
Retrieve columns from a Direct Query table into a Import Mode table, performing an aggregation too.
- Anonymous3 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.
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.