Forum Discussion
Anonymous
2 years agoNot applicable
Highest Status
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...
- 2 years ago
Hi Anonymous ,
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~
Anonymous
2 years agoNot applicable
thank you so much!