Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
n2p2gupta
Frequent Visitor

How to display multiple column values in one column?

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       

 

 

1 ACCEPTED SOLUTION
Eric_Zhang
Microsoft Employee
Microsoft Employee


@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       

 

 


@n2p2gupta

That can be simple. Try 

Column D = 'Table'[Column A]&" "&'Table'[Column B]&" "&'Table'[Column C]

View solution in original post

2 REPLIES 2
Eric_Zhang
Microsoft Employee
Microsoft Employee


@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       

 

 


@n2p2gupta

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])

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.