In a pivot i use the folowing DAX formula to get the Texts in the Pivit instead of a calulation.
This works fine
=CONCATENATEX(Table_DD,[Name],";" )
Output:
Dannis;Marjolijn
Now i would like the delimeter to be a line break so i tried UNICHAR(10)
=CONCATENATEX(Table_DD,[Name],UNICHAR(10)) This formula is invalid
=CONCATENATEX(Table_DD,[Name],CHAR(10)) This formula is invalid
Does anyone know what the correct formula is in Pivot Dax to get the line break
Output should be:
Dannis
Marjolijn
Hope you can Help
Kr
Dannis
This works fine
=CONCATENATEX(Table_DD,[Name],";" )
Output:
Dannis;Marjolijn
Now i would like the delimeter to be a line break so i tried UNICHAR(10)
=CONCATENATEX(Table_DD,[Name],UNICHAR(10)) This formula is invalid
=CONCATENATEX(Table_DD,[Name],CHAR(10)) This formula is invalid
Does anyone know what the correct formula is in Pivot Dax to get the line break
Output should be:
Dannis
Marjolijn
Hope you can Help
Kr
Dannis