Forum Discussion

jracer007's avatar
jracer007
Helper IV
8 years ago
Solved

Negative and Positive

Hello, I have two tables, one has the name of articles and its date of creation. The other table has positive (1) and negative (-1) votes in a single column. How can I visualize the number of posit...
  • Greg_Deckler's avatar
    8 years ago

    I would imagine something like:

     

    PositiveCount = CALCULATE(SUM(Table[Column]),Table[Column] = 1)
    
    NegativeCount = CALCULATE(SUM(Table[Column]),Table[Column] = -1) * -1