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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
melian
Frequent Visitor

How to combine three columns into one?

Hi, 

 

I have a table that has three columns (Zip codes columns). I want to combine all of them into one column that has all the zip codes. How can I do that? 

1 ACCEPTED SOLUTION

@melian,

 

You may select Unpivot Columns in the Query Editor or use UNION Function in DAX.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

13 REPLIES 13
jakobob
New Member

Hey!
There's no build in function in Power BI for that, but you can use M/Power query. 

(Source) =>
    let
        result = Table.FromList(List.Combine(Table.ToColumns(Source)), null, {"AllZipCodes"})
    in
        result

 Just google for how to apply Power Query to your Power BI. 
However this function replaces all your columns. If you want to keept the old columns you got to customize the function. 

Cheers Jakobob

bharatmalvi
Frequent Visitor

how to do the same using power query?

Anonymous
Not applicable

Hi @melian

Could you please post some sample data to replicate your issue???

 

 

Regards,

Angad

zipcode ss 1.PNG

 

This is an example of what I want to do. In the table I am working on there are three columns, the first three, of zipcodes. I want to combine all of them into one column, All ZipCodes. 

@Anonymous

Anonymous
Not applicable

Hi,

 

Use Summarize with union function as shown below-

 

AllZipCode =
UNION(SUMMARIZE('Table','Table'[ZipCode1]),SUMMARIZE('Table','Table'[ZipCode2]),SUMMARIZE('Table','Table'[ZipCode3]))
 
Angad
Anonymous
Not applicable

@AngadK , i have a similar requirement, tried the union dax with Summarize its throwing an error, can you please help me with this

 
 
Project IDs = UNION(SUMMARIZE('Table','Table'[Project_ID1]),SUMMARIZE('Table','Table'[Project_ID2]),SUMMARIZE('Table','Table'[Project_ID3]),SUMMARIZE('Table','Table'[Project_ID4]))
Anonymous
Not applicable

@Anonymous , Have you written the union dax formula on "Create a new table using DAX" pane?

Anonymous
Not applicable

@Anonymous , i got if after using the dax in a new table, is it possible to combine them in the same table?

What i want: am planning to show the hours spent on each project on a particular date, i have 4 columns of project IDs for each person everyday hence i want to combine the IDs into one column.

Hi Melian, Can you please post your solution DAX . I have the same requirement but UNIOn is not working in my case.

@melian,

 

You may select Unpivot Columns in the Query Editor or use UNION Function in DAX.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-chuncz-msft Thank you so much. The UNION function did the job. Much appreciated. 

CONCATENATE([col1],CONCATENATE([col2],[col3]))

melian
Frequent Visitor

@Gokul

The problem with this is that it combines them on the same line, which is not what I want. Your code would make the the new list looks like this 

 

 zipcode ss 2.PNG

 

 

However, I want the new list to look like this 

zipcode ss 1.PNG

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.