Forum Discussion

fab196's avatar
fab196
Helper II
5 years ago
Solved

filter specific result

HI , CAN anyone help me with this problem my data is listed below what i want : if i group the data then, if the gruping column have multiple values then it will return null and if the grouping c...
  • parry2k's avatar
    5 years ago

    fab196 try this measure

     

    Measure 2 = 
    VAR __values = CALCULATE ( DISTINCTCOUNT( Table3[VALUES] ), ALLEXCEPT ( Table3, Table3[COUNTRY ] ) )
    RETURN
    IF ( __values > 1, BLANK(), SUM ( Table3[VALUES] ) ) 

     

    Instead of BLANK() you can also return 0

     

    Follow us on LinkedIn

     

    Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.