Forum Discussion

IscaacNewton's avatar
IscaacNewton
New Member
4 years ago
Solved

Filtering ranked row by latest/highest

Hi all,   I am having trouble with filtering a data table based upon a row rank.     What i am trying to achieve is to be able to visualise only the latstes rows with the highest row rank, this b...
  • truptis's avatar
    truptis
    4 years ago

    Hi IscaacNewton , Try this:
    RESULT =
    CALCULATE ( MAX ( Table1[Rank column] ), ALLEXCEPT ( Table1, Table1[Iordernumber] ) )

    If this helps, then please hit the thumbs up & mark it as a solution. Thanks.