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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
murphm6
Helper II
Helper II

Help writing M code to concatenate 2 columns with an if statement

Hi all,

 

I'm stuck on this and need some help writing an M statement..

 

I have 3 columns - FirstName, MiddleName, LastName. FirstName and LastName are 100% populated. Some people don't have MiddleNames - leaving it blank

 

I've tried writing a statement to concatenate all 3 columns with a space - but the statement only works when all three columns are populated.

 

How can I write a statement that says if MiddleName is blank, then concatenate FirstName and LastName, otherwise concatenate FirstName, MiddleName, and LastName? 

 

here is what i tried: =

 

Table.AddColumn(#"Filtered Rows1", "FirstNameLastName", each [FirstName] & if [MiddleName] <> null and [MiddleName] <> "" then " " & [MiddleName] & ". " else " " & [LastName])

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@murphm6 You could do this:

    #"Added Custom" = Table.AddColumn(#"Changed Type", "Middle", each if [MiddleName] <> null and [MiddleName] <> "" then [MiddleName] & ". " else null),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each [FirstName] & " " & [Middle] & [LastName])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@murphm6 You could do this:

    #"Added Custom" = Table.AddColumn(#"Changed Type", "Middle", each if [MiddleName] <> null and [MiddleName] <> "" then [MiddleName] & ". " else null),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each [FirstName] & " " & [Middle] & [LastName])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors