Forum Discussion
Croy
8 years agoRegular Visitor
Add column based on a list from another table
I have 2 tables (which are obtained via two separate queries): - In Details table I have columns like Date, Country, Customer, Text and some other columns - In Products table I have a list of pr...
- 8 years ago
Hi Croy
Try this calculated column in DETAILS table
Calculated Column = CONCATENATEX ( FILTER ( Products, SEARCH ( Products[Products], Details[Text],, 0 ) > 0 ), Products[Products], ", " )
Zubair_Muhammad
8 years agoCommunity Champion
Hi Croy
Try this calculated column in DETAILS table
Calculated Column =
CONCATENATEX (
FILTER ( Products, SEARCH ( Products[Products], Details[Text],, 0 ) > 0 ),
Products[Products],
", "
)Croy
8 years agoRegular Visitor
Awesome solution Zubair. Many thanks :)