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!

 

Table name: Plan1

 

Structure:

RecebimentoAtrasoBoleto
44444330
44444360
44444300
55555-100
55555-70
55555-10
555555
111111145
111111300
111111400

 

 

How i expected:

RecebimentoAtrasoBoletoMaiorAtraso
44444330360
44444360360
44444300360
55555-1005
55555-705
55555-105
5555555
111111145400
111111300400
111111400400

 

 

 

  • Anonymous

     

    As a calculated column you can use

     

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

6 Replies

  • AlB's avatar
    AlB
    Community Champion

    Hi Anonymous

     

    Try this:

    1. Place a matrix visual in your report with Plan1[Recebimento] in rows

    2. Place this measure in values of the matrix:

       MaxAtraso = MAX(Plan1[AtrasoBoleto])

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hello! AlB

       

      thank you for the answer, but i can make the column in structure because after i will create conditional column from them, so only visualization at matrix dont  atempt me =/

      • AlB's avatar
        AlB
        Community Champion

        Anonymous

        Sorry, I'm afraid I don't understand what you mean