What will be the DAX function to display values from all the columns in one column i.e. col D?
Col A Col B Col C Col D
one two three one two three
Solved! Go to Solution.
@n2p2gupta wrote:
What will be the DAX function to display values from all the columns in one column i.e. col D?
Col A Col B Col C Col D
one two three one two three
That can be simple. Try
Column D = 'Table'[Column A]&" "&'Table'[Column B]&" "&'Table'[Column C]
@n2p2gupta wrote:
What will be the DAX function to display values from all the columns in one column i.e. col D?
Col A Col B Col C Col D
one two three one two three
That can be simple. Try
Column D = 'Table'[Column A]&" "&'Table'[Column B]&" "&'Table'[Column C]
Thanks. Also concatentated function also worked:
Column4 = CONCATENATE(CONCATENATE(CONCATENATE(Format(table[column].[Date],"dddd"), " "), CONCATENATE(table
[column2]," ")), table[column3])
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
16 | |
9 | |
2 | |
2 | |
2 |