Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi
Using Summarize, I created a table that has the year, name & point columns.
Solved! Go to Solution.
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
)
Proud to be a Super User!
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
)
Proud to be a Super User!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 55 | |
| 42 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 113 | |
| 106 | |
| 38 | |
| 35 | |
| 26 |