Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Max value with column condition

Hi there!   Anyone help me? I need bring the max value with column condition, creating the column "MaiorAtraso"...The answer can be through measure or custom column.   Thank you in advance!   T...
  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    7 years ago

    Anonymous

     

    As a calculated column you can use

     

    Column =
    CALCULATE (
        MAX ( Table1[AtrasoBoleto] ),
        ALLEXCEPT ( Table1, Table1[Recebimento] )
    )