Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 iam using DAX =Calculate(distinct(name),Hasloggedin="Yes") I am getting an error multiple values found where single value expected, how to do it??
Solved! Go to Solution.
Hi @Anonymous
You can use the below DAX measures.
Yes =
CONCATENATEX(
FILTER(
YourTable,
YourTable[Hasloggedin] = "Yes"
),
YourTable[Name], ", "
)No =
CONCATENATEX(
FILTER(
YourTable,
YourTable[Hasloggedin] = "No"
),
YourTable[Name], ", "
)
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)
works like charm, thanks
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 50 | |
| 34 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 77 | |
| 41 | |
| 26 | |
| 25 |