Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi All,
I have a table with 3 coumns ,i need to use this 3 columns in a table visual which show only row the highest marks,Attaching the input and required output
Solved! Go to Solution.
Hi @pabburi,
You can new a calculated table with below DAX formula:
Output = FILTER ( Input, Input[Marks] = CALCULATE ( MAX ( Input[Marks] ), ALLEXCEPT ( Input, Input[Section] ) ) )
Best regards,
Yuliana Gu
Hi @pabburi,
You can new a calculated table with below DAX formula:
Output = FILTER ( Input, Input[Marks] = CALCULATE ( MAX ( Input[Marks] ), ALLEXCEPT ( Input, Input[Section] ) ) )
Best regards,
Yuliana Gu
Hi,
If there are 2 instances of highest marks for the same section, then do you want to see both the names in the same cell (comma seperated) or do you want to see two rows?
Drop Section on Rows and then use this measures:
Highest Mark = MAX( Data[marks] )
Name with Highest Mark = CONCATENATEX( TOPN( 1, VALUES( Data[name] ), CALCULATE( MAX( Data[marks] ) ), DESC ), [name] )
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
59 | |
58 |