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
Anonymous
Not applicable

Return Non-Blank Values From Multiple Columns With Delimiters

I have the following table:

 

ID

DogCatPigHorseCowSheep

1

Dog     
2 Cat   Sheep
3      
4  PigHorseCow 

 

I'm trying to create a calculated column that would populate a string based on the non-blank values of EACH of the six columns with a ", " delimiter. The results from above would be:

 

IDAnimals
1Dog
2Cat, Sheep
3None
4Pig, Horse, Cow

 

I've tried doing nested CONCATENATE and IF statements, but the string separation is the most difficult part. Essentially, I'm looking for something akin to TEXTJOIN from Excel. Anyone point me in the right direction?

 

This is a created table within my model, so I unfortuantely can't use any of the M table.join functions to help.

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

So like this?

 

TextJoin = 
  VAR __Table = { [Dog], [Cat], [Pig], [Horse], [Cow], [Sheep] }
RETURN
  CONCATENATEX(
      FILTER(__Table,[Value]<>""),
      [Value],
      ","
  )

 

PBIX attached.


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

So like this?

 

TextJoin = 
  VAR __Table = { [Dog], [Cat], [Pig], [Horse], [Cow], [Sheep] }
RETURN
  CONCATENATEX(
      FILTER(__Table,[Value]<>""),
      [Value],
      ","
  )

 

PBIX attached.


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler great solution, 

just a question, is possible count the words in this column?
For exemple:
TextJoin            Count

Dog1
Cat,Sheep2
 0
 0
Pig,Horse,Cow3

 

Thank you so much.

Hi @Greg_Deckler ,

I have similiar issues here, the different is I am using direct query mode and "concanatex" is not support direct query.
it is possible to it in "Measure" ? your support will be really appreciated.

Tahnk you.

Anonymous
Not applicable

Thanks Greg! Worked like a charm.

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.