Forum Discussion
Anonymous
3 years agoNot applicable
Create a table using Distinct values from another table
Let's say I have two tables ORDERS -------- Order_Num, Material_Code, etc., etc., Ord001, 1001 Ord002, 1002 Ord003, 1003 Ord004, 1003 Ord005, 1001 MATERIALS ------------- Material_C...
- 3 years ago
Hi Anonymous ,
Please try:
Table = FILTER('MATERIALS',[Material_Code] in VALUES(ORDERS[ Material_Code]))Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jianboli-msft
3 years agoCommunity Support
Hi Anonymous ,
Please try:
Table = FILTER('MATERIALS',[Material_Code] in VALUES(ORDERS[ Material_Code]))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.