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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
619SK
Helper II
Helper II

If blank then concat - Power Query

power

I want to concat "S.no" , "Name" & Valid in power query with the below format.

Concat only if cell is not blank like below. 

 

S.noNameValidAppend Result 
1AYesS.No:1 | Name: A | Valid: Yes
2B S.No:2 | Name: B
3 NoS.No:3 | Valid: No
4C S.No:4 | Name: C
1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi @619SK 

You can use Text.Combine for this since it automatically excludes null values.

For example:

 

let
  Source = #table(
    type table [S.no = Int64.Type, Name = text, Valid = text],
    {{1, "A", "Yes"}, {2, "B", null}, {3, null, "No"}, {4, "C", null}}
  ),
  #"Added Append Result" = Table.AddColumn(
    Source,
    "Append Result",
    each Text.Combine({"S.No:" & Text.From([S.no]), "Name: " & [Name], "Valid: " & [Valid]}, " | "),
    type text
  )
in
  #"Added Append Result"

 

For this method to work, blanks would need to be null values rather than empty strings.

 

Does something like this work for you?


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

1 REPLY 1
OwenAuger
Super User
Super User

Hi @619SK 

You can use Text.Combine for this since it automatically excludes null values.

For example:

 

let
  Source = #table(
    type table [S.no = Int64.Type, Name = text, Valid = text],
    {{1, "A", "Yes"}, {2, "B", null}, {3, null, "No"}, {4, "C", null}}
  ),
  #"Added Append Result" = Table.AddColumn(
    Source,
    "Append Result",
    each Text.Combine({"S.No:" & Text.From([S.no]), "Name: " & [Name], "Valid: " & [Valid]}, " | "),
    type text
  )
in
  #"Added Append Result"

 

For this method to work, blanks would need to be null values rather than empty strings.

 

Does something like this work for you?


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors