Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
webportal
Impactful Individual
Impactful Individual

Measure to sum column with multiple filters

I want to sum the absolute value of column "Saldo" in table "Balancete Geral", whose column "Conta" is:

  • 11
  • 12
  • 13

In a single measure.

 

This can be achieved with Calculate, like:

Measure = 
CALCULATE (
    ABS ( SUM ( 'BalanceteGeral'[Saldo] ) );
    BalanceteGeral[Conta] = 11
)+
CALCULATE (
    ABS ( SUM ( 'BalanceteGeral'[Saldo] ) );
    BalanceteGeral[Conta] = 12
)+
CALCULATE (
    ABS ( SUM ( 'BalanceteGeral'[Saldo] ) );
    BalanceteGeral[Conta] = 13
)

But, isn't there a more efficient way to use the CALCULATE filter to consider 3 or more filters?

I could use OR in a single filter, but it only accepts two arguments...

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Also, an alternative to using the OR function that bsas suggested is to use || for the Or component. This will allow you to layer up multiple OR conditions, while the OR DAX Function only allows two variables to be compared.

View solution in original post

3 REPLIES 3
bsas
Post Patron
Post Patron

Hi @webportal,

 

You could try to use SUMX or you can use multiply OR - it looks like OR( value1, OR(value1, value2))

Anonymous
Not applicable

Also, an alternative to using the OR function that bsas suggested is to use || for the Or component. This will allow you to layer up multiple OR conditions, while the OR DAX Function only allows two variables to be compared.

Anonymous
Not applicable

 

This is one way to do it

 

Measure = 
CALCULATE (
    ABS ( SUM ( 'BalanceteGeral'[Saldo] ) ),
    FILTER(BalanceteGeral, BalanceteGeral[Conta] >= 11),
FILTER(BalanceteGeral, BalanceteGeral[Conta] <= 13) )

 

 

A few alternatives to this could be applied, however would imagine for the situation you presented this should work.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.