Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear Community,
i need your help with the creation of a DAX programming.
In the "Project_No" column there are many entries with the associated "Project_Step" column.
I need every single entry in "Project_No" with the corresponding highest entry in "Project_Step".
It can also be that 000 is the highest value. All other values should be hidden.
I would be glad if you can help me, Thank you
Solved! Go to Solution.
@Anonymous , Create a measure like this and use it with project_no
Last step = calculate(max(Table[Project_Step]), filter(Table, Table[Project_Step] = calculate(max(Table[Project_Step]), allexcept(Table, Table[Project_No]))) )
@Anonymous , Create a measure like this and use it with project_no
Last step = calculate(max(Table[Project_Step]), filter(Table, Table[Project_Step] = calculate(max(Table[Project_Step]), allexcept(Table, Table[Project_No]))) )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |