Forum Discussion
Anonymous
5 years agoNot applicable
csv value filter
Hi All, I have ID and Name column in two different tables ID is comma separated value. Table 1 ID 1,2,3 2,4 5,2 Table 2 ID Name 1 A 2 B 3 C 4 D ...
- Anonymous5 years ago
Hi Anonymous ,
You could create a column using the following formula:
Name = CONCATENATEX ( CALCULATETABLE ( VALUES ( Table2[Name] ), FILTER ( Table2, SEARCH ( Table2[ID], Table1[ID], 1, 0 ) > 0 ) ), [Name], "," )Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
amitchandak
5 years agoSuper User
Anonymous , In table a create a new column ID 1
Split ID1 on , into rows : https://www.tutorialgateway.org/how-to-split-columns-in-power-bi/
Then combine Table 1 and table 2 using ID and ID1 and use concatenatex on Name
- Anonymous5 years agoNot applicable
Hey Amit.. Thanks for the solution but i want to achieve it withing DAX.