Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi!
I am new with Dax and need help for this specific formula.
Original Table
ID.Student | ID.Class | Success? |
1 | 11 | Yes |
2 | 12 | Yes |
3 | 13 | No |
4 | 11 | No |
5 | 12 | Yes |
6 | 13 | Yes |
7 | 11 | No |
8 | 12 | Yes |
9 | 13 | No |
10 | 11 | No |
I would like to measure the success rate (number of students who "success = yes divide by the number of students) per Class id ?
Can anyone help me with this please 🙂
Solved! Go to Solution.
@Vero85 , Try a measure like
Divide( countrows(filter(Table, Table[Success?]= "Yes") , Table[ID.Student]) , countrows(Table[ID.Student]) )
User | Count |
---|---|
82 | |
78 | |
67 | |
46 | |
45 |
User | Count |
---|---|
105 | |
44 | |
39 | |
39 | |
39 |