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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
aishak12
Helper IV
Helper IV

Joining two columns into one

Hi All, 

 

I am importing my data with SQL and have two columns (RECOMMENDED_BLK & RECOMMENDED_LOT). I would like to comine these values into a new column while having a slash between them. 

 

For instance new column values = 6490/002, 5893/001B, 5889/001. Is this possible? 

 

aishak12_1-1628360286557.png

 

 

 

 

1 ACCEPTED SOLUTION
Portrek
Resolver III
Resolver III

Hi aishak.

You can inside power query add a custon column with the code below

Text.Combine({Text.From([RECOMMMENDED_BLK], "pt-BR"), "/", [RECOMMENDED_LOT]})

 

best regards.

View solution in original post

5 REPLIES 5
Portrek
Resolver III
Resolver III

Hi aishak.

You can inside power query add a custon column with the code below

Text.Combine({Text.From([RECOMMMENDED_BLK], "pt-BR"), "/", [RECOMMENDED_LOT]})

 

best regards.

This worked thank you. Recommended_BLK had three M's in your response.

I am receiving error for some reason. Do you have any clue what the issue is? 

CNENFRNL
Community Champion
Community Champion

= Table.AddColumn(#"prev step", "Concat", each [RECOMMENDED_BLK] & "/" & [RECOMMENDED_LOT])

 

Btw, why not concatenate columns in sql?

SELECT CONCAT(RECOMMENDED_BLK, '/', RECOMMENDED_LOT) AS RECOMMENDED_CONCAT

or

SELECT (RECOMMENDED_BLK + '/' + RECOMMENDED_LOT) AS RECOMMENDED_CONCAT

if "+" operator is supported by your db.


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, 

I am receiving this error. I am trying to do this in PowerBI if possible. Thanks 

 

aishak12_0-1628374193283.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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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