Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get 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

Reply
pabburi
Frequent Visitor

Taking out the Max Value

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 

Query.PNG

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

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] ) )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

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] ) )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
Super User

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?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
LivioLanzo
Solution Sage
Solution Sage

@pabburi

 

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!  

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.