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
Vilmar
Resolver I
Resolver I

Somar Com Vários Critérios Diferentes Dinamicamente

Olá

Preciso somar a quantidade das vendas que estão na tabela esquerda, porem com criterios diferente para cada supervisor da tabela direita. Como fazer isso dinamicamente no power bi?

Tem que ser dinamico, pois os supervisores podem mudar sua supervisão.

Planilha aqui 

 

Veja na tabela direita onde a formula SOMASES tem criterios diferentes para os supervisores:

Sem título.png

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @Vilmar 

Thanks for reaching out to us.

You can try this,

Soma Qtde = 
var _s= MIN(List[Supervisor])
return 
SWITCH(TRUE(),
_s="Ajani"||_s="Pratik",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Regiao]=MIN(List[Regiao]) && 'Table'[Categoria]=MIN(List[Categoria]))),
_s="Uehudah"||_s="Edison",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Tipo]=MIN(List[Tipo]))),
_s="Mihoko",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Categoria]=MIN(List[Categoria]))),
_s="Ruthie",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Meio]=MIN(List[Meio]))))

 

result

vxiaotang_1-1653362280394.png

If you have many supervisors, then you can add a column such like below, then use column=1 or 2 to determine which type of formula to choose

vxiaotang_0-1653362187238.png

 

Best Regards,

Community Support Team _Tang

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

View solution in original post

3 REPLIES 3
v-xiaotang
Community Support
Community Support

Hi @Vilmar 

Thanks for reaching out to us.

You can try this,

Soma Qtde = 
var _s= MIN(List[Supervisor])
return 
SWITCH(TRUE(),
_s="Ajani"||_s="Pratik",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Regiao]=MIN(List[Regiao]) && 'Table'[Categoria]=MIN(List[Categoria]))),
_s="Uehudah"||_s="Edison",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Tipo]=MIN(List[Tipo]))),
_s="Mihoko",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Categoria]=MIN(List[Categoria]))),
_s="Ruthie",CALCULATE(SUM('Table'[Qtd]),FILTER(ALL('Table'),'Table'[Meio]=MIN(List[Meio]))))

 

result

vxiaotang_1-1653362280394.png

If you have many supervisors, then you can add a column such like below, then use column=1 or 2 to determine which type of formula to choose

vxiaotang_0-1653362187238.png

 

Best Regards,

Community Support Team _Tang

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

@v-xiaotang obrigado por responder.

Seria quase isso que fez, mas tinha que ser algo mais dinâmico, pois terei vários supervisores com combinações diferentes, e criar vários valores constantes a ser correspondido no switch, será muito trabalhoso.

 

Mais uma vez, obrigado!

Hi @Vilmar 

Thanks for your reply. In this scenario you can follow the second method I introduced. Since different combinations have different calculation formulas, these are unavoidable and need to be set manually in the measure.

 

Best Regards,

Community Support Team _Tang

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

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.