This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello,
I am trying to perform a four-way match from four different tables. The problem is that I am trying to match text rather than numbers. I beleive the below DAX would work for numbers, but it will not work for text.
Match/No Match =
VAR MatchFake1 = SELECTEDVALUE('XX Line Staging'[XX Staging Item Deescription])
VAR MatchFake2 = SELECTEDVALUE('XX Lines'[Item Description])
VAR MatchFake3 = SELECTEDVALUE(Items[Item Description])
VAR MatchFake4 = SELECTEDVALUE('Order Lines'[Item Description])
Return
IF(MatchFake1=MatchFake2=MatchFake3=MatchFake4, "Match", "No Match"
)
Please keep in mind I am searching for a 4-way match on text so I can create a conditionally formatted column to populate match/no match in a KPI card in PBI.
Any feedback would be great. Thank you,
Cam
Solved! Go to Solution.
@chonchar Add as a measure:
Match/No Match Measure =
VAR __Count =
COUNTROWS (
DISTINCT ( {
SELECTEDVALUE ( Table[Desc1] ),
SELECTEDVALUE ( Table[Desc2] ),
SELECTEDVALUE ( Table[Desc3] ),
SELECTEDVALUE ( Table[Desc4] )
} ) )
RETURN
IF ( __Count = 1, "Match", "No Match" )
👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤️
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@chonchar Add as a measure:
Match/No Match Measure =
VAR __Count =
COUNTROWS (
DISTINCT ( {
SELECTEDVALUE ( Table[Desc1] ),
SELECTEDVALUE ( Table[Desc2] ),
SELECTEDVALUE ( Table[Desc3] ),
SELECTEDVALUE ( Table[Desc4] )
} ) )
RETURN
IF ( __Count = 1, "Match", "No Match" )
👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤️
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@chonchar add a new column with following DAX expression:
Match/No Match Column =
VAR __Count = COUNTROWS ( DISTINCT ( { Table[Desc1], Table[Desc2], Table[Desc3], Table[Desc4] } ) )
RETURN
IF ( __Count = 1, "Match", "No Match" )
👉 Learn Power BI and Fabric - subscribe to our YT channel - @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤️
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
I completely understand the sytnax, but PBI is not populating the other tables after:
Table[Column1]. Is there something I am missing? does distinct not pull table1[column1], table2[column2]...etc?
@parry2k do I need to create measures for each table column? It is only pulling measures with that syntax.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 23 | |
| 19 |