Forum Discussion
SushmaReddy
3 years agoHelper I
Remove Duplicates using DAX
Hi Team, I am developing a report where i need to use table visual and have to display the columns as shown below. Col1 Col2 Col3 Test1 .abc .123 .abc .234 ...
Mahesh0016
3 years agoSuper User
SushmaReddy I hope this helps you!THANK YOU!!
BKC =
IF (
ISINSCOPE ( Table1[Col1] ),
CONCATENATEX (
VALUES ( Table2 ),
". " & Table2[Col2],
UNICHAR ( 10 ) & UNICHAR ( 13 ),
Table2[Col3]
)
)
SushmaReddy
3 years agoHelper I
Hi Thank you for the immediate response but i am still getting the same output.