This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi community..!!
I wanted to append the two columns in one column. Please refer the below image.
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..
Solved! Go to Solution.
HI @Anonymous
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
HI @Anonymous
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
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! |
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
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 25 | |
| 25 | |
| 21 | |
| 13 |
| User | Count |
|---|---|
| 59 | |
| 50 | |
| 25 | |
| 20 | |
| 20 |