Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi, need your help on this issue:
I have this type of data:
ID | Progress Status |
001 | B1 |
001 | B2 |
001 | B3 |
I'd like to have the highest status for this id will be at B3. The output that i want is like this:
ID | Progress Status | Highest Status Progress |
001 | B1 | B3 |
001 | B2 | B3 |
001 | B3 | B3 |
Anyone can help?
Solved! Go to Solution.
Hi @Syaza1891 ,
You can try below column expression.
Highest Status Progress = CALCULATE(MAX('Table'[Progress Status]),ALLEXCEPT('Table','Table'[ID]))
Did I answer your question? If yes, pls mark my post as a solution!
Thank you~
thank you so much!
Hi @Syaza1891 ,
You can try below column expression.
Highest Status Progress = CALCULATE(MAX('Table'[Progress Status]),ALLEXCEPT('Table','Table'[ID]))
Did I answer your question? If yes, pls mark my post as a solution!
Thank you~