Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Community,
I'm working with a table structured as follows:
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:
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:
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.
Solved! Go to Solution.
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
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.
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |