Forum Discussion

ompowerbi's avatar
ompowerbi
Icon for Helper I rankHelper I
3 years ago
Solved

Total for other players being displayed when it should not appear

Hi,  Fairly simple question perhaps: I have a tables like this: Table1: Table2: For table1, the row with a blank player is showing the sum of scores for all other players from ta...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi ompowerbi ,

     

    I tried to reproduce your problem.

    This is because the Player column in Table 1 is not equivalent to the Player column in Table 2. In other words, because the Player value in Table 2 does not exist in the Player in Table 1.

    You could try to create a measure to solve it.

    Measure = CALCULATE(SUM('Table 2'[Score]),FILTER('Table 2',[Player]=MAX('Table 1'[Player])))

     

    Best Regards,

    Stephen Tao

     

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