Forum Discussion
Bpark1994
Helper I
5 years agoNeed Dax Help Please!
Hi guys, Here is my starting table im pulling into power bi: User Task john 70 jim 70 john 71 john 30 I want to write a dax function called Qualified that says if a...
nandic
Resident Rockstar
5 years agoHi,
Could you try this formula:
Concatenax Value =
VAR Concat =
CALCULATE (
CONCATENATEX ( 'Table', 'Table'[Task], "," ),
ALLEXCEPT ( 'Table', 'Table'[User] )
)
RETURN
IF (
AND ( CONTAINSSTRING ( Concat, "70" ), CONTAINSSTRING ( Concat, 71 ) ),
"Yes",
"No"
)
Attached demo file.
Regards,
Nemanja Andic