Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Remove 0 from balance list

Hi,   I created a balance list. like that:   account no. / balance 12345 / 50€ 12346 / 70€ 12347 / 0€ 12348 / -15€   I want to remove all account numbers with a blance of 0 Im that case th...
  • v-lionel-msft's avatar
    v-lionel-msft
    6 years ago

    Hi Anonymous ,

     

    Maybe you can refer to the following method.

    I constructed such a table.

    Then, I created a calculated table.

    Table = 
    SUMMARIZE(
        Sheet1,
        Sheet1[account no.],
        "Balance", SUM(Sheet1[balance] )
    )

     

    Best regards,
    Lionel Chen

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