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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.