Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 44 | |
| 44 | |
| 19 | |
| 19 |
| User | Count |
|---|---|
| 71 | |
| 70 | |
| 34 | |
| 33 | |
| 31 |