Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Can anyone help me? I got stuck by getting the highest number per group.
Here is my sample table:
Contacts | Question | System | Response |
A | Question 1 | Vendor 1 | 8 |
A | Question 1 | Vendor 2 | 4 |
A | Question 2 | Vendor 1 | 9 |
A | Question 2 | Vendor 2 | 7 |
B | Question 1 | Vendor 1 | 9 |
B | Question 1 | Vendor 2 | 5 |
B | Question 2 | Vendor 1 | 9 |
B | Question 2 | Vendor 2 | 7 |
I need to get the max/biggest number per Contacts and Question.
This is the expected output:
Contacts | Question | System | Response | Max | IsMax |
A | Question 1 | Vendor 1 | 8 | 8 | 1 |
A | Question 1 | Vendor 2 | 4 | 8 | 0 |
A | Question 2 | Vendor 1 | 9 | 9 | 1 |
A | Question 2 | Vendor 2 | 7 | 9 | 0 |
B | Question 1 | Vendor 1 | 9 | 9 | 1 |
B | Question 1 | Vendor 2 | 5 | 9 | 0 |
B | Question 2 | Vendor 1 | 9 | 9 | 1 |
B | Question 2 | Vendor 2 | 7 | 9 | 0 |
Solved! Go to Solution.
@Anonymous
Try
Max= CALCULATE ( MAX ( Table1[Response] ), ALLEXCEPT ( Table1, Table1[Contacts], Table1[Question] ) )
@Anonymous
Try
Max= CALCULATE ( MAX ( Table1[Response] ), ALLEXCEPT ( Table1, Table1[Contacts], Table1[Question] ) )
Thank you! This works!
User | Count |
---|---|
117 | |
75 | |
62 | |
50 | |
44 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |