Forum Discussion
Anonymous
5 years agoNot applicable
Data filtering based on higher value in column
Hello all, I would like to filter the table below based on the higher value in the Order ID for each row where the Unique ID is matching. The table below represents a history that's why there is...
- 5 years ago
Anonymous
Create a new table with the following filter:Filtered Order Table = FILTER( Table2, var __maxorder = CALCULATE( MAX(Table2[Order ID]) , ALLEXCEPT( Table2 , Table2[AA ID] )) return Table2[Order ID] = __maxorder )
Fowmy
Super User
5 years agoAnonymous
Create a new table with the following filter:
Filtered Order Table =
FILTER(
Table2,
var __maxorder = CALCULATE( MAX(Table2[Order ID]) , ALLEXCEPT( Table2 , Table2[AA ID] )) return
Table2[Order ID] = __maxorder
)
Anonymous
5 years agoNot applicable
Thank you, that works perfectly.