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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
ppatil
Helper III
Helper III

Combine Two Columns

Hi community..!!

 

I wanted to append the two columns in one column. Please refer the below image.

ppatil_0-1639738468323.png

I wanted to create new column called as No_of_finals and in that I wanted to append Winner and Runners_up 

Please anyone could you help me to do that..??

waiting for quick respose..

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

HI @ppatil 

I am not sure if you could create that column in same table. Instead you can try to create seperate table with below code:-

table2 = UNION(VALUES(table[winner]),VALUES(table[runner-up]))

 

Thanks,

Samarth

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

5 REPLIES 5
Samarth_18
Community Champion
Community Champion

HI @ppatil 

I am not sure if you could create that column in same table. Instead you can try to create seperate table with below code:-

table2 = UNION(VALUES(table[winner]),VALUES(table[runner-up]))

 

Thanks,

Samarth

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Thanks @Samarth_18 

CNENFRNL
Community Champion
Community Champion

List.Combine(Table.ToColumns(#"Previous Step"))

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Hi @CNENFRNL 

Which is Previous Step you are talking about? I did not get.

I'm not familiar with List.Combine buy you try either of these options

= Table.AddColumn(#"Previous Step", "No_of_finals", each [Winner]&[Runners-Up])

or

= Table.AddColumn(#"Previous Step", "No_of_finals", each Text.Combine({[Winner], [Runners-Up]}, ""), type text)

where #"Previous Step" refers to the name of the last step in your current query

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.