Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! Don't miss your chance! Learn more
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])
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |