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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Yadidya
Regular Visitor

How to select a single record for each year based on maximum vaue

Hi

Using Summarize, I created a table that has the year, name & point columns. 

Table = SUMMARIZE(constructor_results, races[year], constructors[name], "Total Points", SUM(constructor_results[points]))
It's visualization is attached below. But I want to visualize only one record per year with the name that has the maximum points in that year as a table.  How can I do this? Thanks in advance
Pic4.png
 
 
1 ACCEPTED SOLUTION
amustafa
Solution Sage
Solution Sage

To achieve this in Power BI using DAX, you can modify your existing SUMMARIZE function to include a ranking based on the points, and then filter the table to only include the top record per year. Here’s how you can do it:

Table = 
VAR SummaryTable = SUMMARIZE(
    constructor_results,
    races[year],
    constructors[name],
    "Total Points", SUM(constructor_results[points])
)
VAR RankedTable = ADDCOLUMNS(
    SummaryTable,
    "Rank", RANKX(FILTER(SummaryTable, [year] = EARLIER([year])), [Total Points], , DESC, Dense)
)
RETURN
FILTER(
    RankedTable,
    [Rank] = 1
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
amustafa
Solution Sage
Solution Sage

To achieve this in Power BI using DAX, you can modify your existing SUMMARIZE function to include a ranking based on the points, and then filter the table to only include the top record per year. Here’s how you can do it:

Table = 
VAR SummaryTable = SUMMARIZE(
    constructor_results,
    races[year],
    constructors[name],
    "Total Points", SUM(constructor_results[points])
)
VAR RankedTable = ADDCOLUMNS(
    SummaryTable,
    "Rank", RANKX(FILTER(SummaryTable, [year] = EARLIER([year])), [Total Points], , DESC, Dense)
)
RETURN
FILTER(
    RankedTable,
    [Rank] = 1
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




@amustafa Thank you so much for your help. It worked.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.