Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I need to calculate within this table the "winners" of the line based on three criteria:
1 - Highest total number of days (if they are equal)
2 - Larger date (if they are still the same)
3 - Higher order
In this case, it's not to look for the biggest of all and give only one result, it's to apply the criterion for each type of value of the column "ROW"
Hi @Anonymous ,
You can do this by performing three row selections (filters) in Power Query:
firstFilter =
Table.SelectRows(previousStep, each [Total de Dias] = List.Max(previousStep[Total de Dias]))
secondFilter =
Table.SelectRows(firstFilter, each [Dia Mais Recente] = List.Max(firstFilter[Dia Mais Recente]))
thirdFilter =
Table.SelectRows(secondFilter, each [Maior Ordem] = List.Max(secondFilter[Maior Ordem]))
You may be able to roll this into a single step but this lays out the principle most clearly.
Pete
Proud to be a Datanaut!
In this case, it's not to look for the biggest of all and give only one result, it's to apply the criterion for each type of value of the column "ROW"
Hi @Anonymous ,
This doesn't make sense to me. Your example output only shows one result.
Can you provide an example of your ACTUAL required output please?
Pete
Proud to be a Datanaut!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |