Forum Discussion

msam86's avatar
msam86
Helper I
2 years ago
Solved

Conditional with dynamic values

Hello friends, how are you? With your help I was able to implement the status of one piece of equipment per year in a pie chart.   Now I wanted to implement another pie chart, where I can add up th...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi msam86 

     

    Try the following Measure:

     

    Measure 2 = 
    VAR select_client = SELECTEDVALUE(Dados[Client])
    RETURN
    COUNTX(
        FILTER(ALL('Dados'),[Client]=select_client),[Client])

     

     

     

     

     

    Best Regards,

    Jayleny

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.