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
marcofalzone
Helper I
Helper I

DAX Measure to concatenate common values found in more columns

Hi Community,

I'm working with a table structured as follows:

marcofalzone_1-1688788447554.png

I would like to write a DAX measure that returns in any row a unique string of combination of Column_1 and Column_2 values that belongs to both columns.

 

For example, if I put a slicer selector on Blue, the visual should return the following:

marcofalzone_2-1688788606040.png

Values "200" and "450" are not part of the concatenation because they only appear on Column_2.

And, if I turn the slicer on Yellow, it shall return:

marcofalzone_3-1688788711477.png

Again, values "200" and "450" in Column_2 do not become part of the Concatenation, since are not common to both columns.

In other words, I'm trying to figure out how to write a measure that repeat the same combination in any row of the row context [regardless the row] and is filtered by the field context based on Column_3.

 

I do appreciate your kind suggestions!

Marco.

 

 

 

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @marcofalzone,

I'd like to suggest you use INTERSECT and CONCATENATEX functions to get the intersect part of values from two columns.

formula =
CONCATENATEX (
    INTERSECT ( VALUES ( Table1[column1] ), VALUES ( Table1[column2] ) ),
    [column1],
    ", "
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
marcofalzone
Helper I
Helper I

Hi Xiaoxin, the proposed formula is perfect, thank you for the time dedicated to my question.

I have a couple of question for you, just for my growth in DAX language:

 

Is there any way to convert the ouput of your formula in order to return a table as output? It could be useful to use that output as input "IN" syntax (argument of "CALCULATE"), which requires a table as well.

 

Thank you.

v-shex-msft
Community Support
Community Support

Hi @marcofalzone,

I'd like to suggest you use INTERSECT and CONCATENATEX functions to get the intersect part of values from two columns.

formula =
CONCATENATEX (
    INTERSECT ( VALUES ( Table1[column1] ), VALUES ( Table1[column2] ) ),
    [column1],
    ", "
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.