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
mariaorriols
Regular Visitor

Merge columns based on values

Hi everyone

 

My data looks like (all of them are text type): 

 

Month1MonthYear
01

January

2022
02February2022
03March2022
04April2022
05May2022

 

I am only showing these months of 2022, but I have data since 2005. 

I want to create a new column, Month.Year, that combines both "Month" and "Year" if Month equals "Gener". If else it should state just Month. So it would look like:

 

Month1MonthYearMonth.Year
01

January

2022January 2022
02February2022February
03March2022March
04April2022April
05May2022May
06June2022June
07

July

2022

July

08August2022August
09September2022September
10October2022October
11November2022November
12December2022December
01January2021January 2021
1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Use following formula in a custom column

 

= if Number.From([Month1])=1 then [Month]&" "&Text.From([Year]) else [Month]

 

 See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test 

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUfJKzCtNLKoEsowMjIyUYnWilYyAHLfUpCJ0cWMgxzexKDkDWdAEyHEsKMrMQRY0BatEaI4FAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Month1 = _t, Month = _t, Year = _t]),
    #"Added Custom" = Table.AddColumn(Source, "Month.Year", each if Number.From([Month1])=1 then [Month]&" "&Text.From([Year]) else [Month])
in
    #"Added Custom"

 

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Use following formula in a custom column

 

= if Number.From([Month1])=1 then [Month]&" "&Text.From([Year]) else [Month]

 

 See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test 

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUfJKzCtNLKoEsowMjIyUYnWilYyAHLfUpCJ0cWMgxzexKDkDWdAEyHEsKMrMQRY0BatEaI4FAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Month1 = _t, Month = _t, Year = _t]),
    #"Added Custom" = Table.AddColumn(Source, "Month.Year", each if Number.From([Month1])=1 then [Month]&" "&Text.From([Year]) else [Month])
in
    #"Added Custom"

 

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.

Top Solution Authors
Top Kudoed Authors