Forum Discussion
Matching Text
- 3 years ago
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! ❤️
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! ❤️