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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
steambucky
Helper III
Helper III

Conactenating two fields BUT how do you put a delimiter between them?

 

 

Hello I am conactenating two fields, a (year and a month) and I get this:  : 20187

 

What I want is : 2018-7

 

Can you assist?

1 ACCEPTED SOLUTION
ValentinBIA
Resolver I
Resolver I

Hi @steambucky,

 

If you are trying to do so using DAX, you can just use the following measure:

YearMonth = table[year] & "-" & table[month]

Or you could use this one:

YearMonth = CONCATENATE(Table[Year], CONCATENATE("-", Table[Month]))

 

However, if you are trying to create a new column using Power Query, then you can select the 2 columns, right click, then "merge columns", and in this pop up you can select a separator, just input you character: -

 

Hope that helps

 

Best,

 

Valentin

View solution in original post

3 REPLIES 3
ValentinBIA
Resolver I
Resolver I

Hi @steambucky,

 

If you are trying to do so using DAX, you can just use the following measure:

YearMonth = table[year] & "-" & table[month]

Or you could use this one:

YearMonth = CONCATENATE(Table[Year], CONCATENATE("-", Table[Month]))

 

However, if you are trying to create a new column using Power Query, then you can select the 2 columns, right click, then "merge columns", and in this pop up you can select a separator, just input you character: -

 

Hope that helps

 

Best,

 

Valentin

Thanks Valentin, You rock! 🙂

 

 

Thejeswar
Resident Rockstar
Resident Rockstar

Hi,

The Below is the way you achieve it

 

Concatenated_Column = CONCATENATE([Year],CONCATENATE("-",[Month]))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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