Forum Discussion
Anonymous
7 years agoNot applicable
DAX help
I have my table like this Name Hasloggedin A Yes B Yes C No D Yes I want ot return names where hasloggedin= Yes and hasloggedin=no. If...
Anonymous
7 years agoNot applicable
works fine but Iam having problem If i have multiple value in my name column, if i use disitnct its showing the same error (multuiple values supplied when expecting 1 value)
Mariusz
7 years agoCommunity Champion
Hi Anonymous
Try the below
Yes =
CONCATENATEX(
CALCULATETABLE(
VALUES( YourTable[Name] ),
YourTable[Hasloggedin] = "Yes"
),
YourTable[Name], ", "
)Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.

Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
- Anonymous7 years agoNot applicable
works like charm, thanks