Forum Discussion
Anonymous
7 years agoNot applicable
Getting the Maximum per Group
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 Vendo...
- 7 years ago
Anonymous
Try
Max= CALCULATE ( MAX ( Table1[Response] ), ALLEXCEPT ( Table1, Table1[Contacts], Table1[Question] ) )
Zubair_Muhammad
7 years agoCommunity Champion
Anonymous
Try
Max=
CALCULATE (
MAX ( Table1[Response] ),
ALLEXCEPT ( Table1, Table1[Contacts], Table1[Question] )
)
- Anonymous7 years agoNot applicable
Thank you! This works!