Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Good morning
I have a table similar to the following, there are operators with different levels, each operator can have several levels and I want to stay with each operator and its highest level. Someone who can help me? I have table 1 and I want to have table 2.
Table 1
| id | level |
| 100 | 2 |
| 100 | 3 |
| 101 | 1 |
| 102 | 2 |
| 103 | 1 |
| 103 | 2 |
| 104 | 2 |
| 104 | 1 |
| 104 | 3 |
Table 2
| id | level |
| 100 | 3 |
| 101 | 1 |
| 102 | 2 |
| 103 | 2 |
| 104 | 3 |
Thank you all very much for the help.
Solved! Go to Solution.
Please try this DAX as a new table.
Table 2 =
SUMMARIZE ( 'Table 1', 'Table 1'[id], "Level", MAX ( 'Table 1'[level] ) )
Output:
Thanks,
Thank you very much for the help. It works perfectly for me.
Please try this DAX as a new table.
Table 2 =
SUMMARIZE ( 'Table 1', 'Table 1'[id], "Level", MAX ( 'Table 1'[level] ) )
Output:
Thanks,
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |