Forum Discussion
spandy34
Responsive Resident
2 years agoCONCATENATEX MATRIX NO DUPLICATES
Hello I have the following matrix where the Rows are the Mission Project Field, the column is the Row field and the Values is the following DAX z_Names_Matrix = CONCATENATEX( 'Name Main...
- 2 years ago
spandy34 You didn't use my code. Your code has syntax errors and will not work because it is not the correct logic. Use exactly this:
z_Names_Matrix = CONCATENATEX( DISTINCT( 'Name Main'[Name] ) , [Name], "," & UNICHAR(10))
Greg_Deckler
Community Champion
2 years agospandy34 You didn't use my code. Your code has syntax errors and will not work because it is not the correct logic. Use exactly this:
z_Names_Matrix = CONCATENATEX( DISTINCT( 'Name Main'[Name] ) , [Name], "," & UNICHAR(10))
spandy34
Responsive Resident
2 years agoThank you very much - that has worked. Sorry about not copying the DAX properly. I appreciate your time.