Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Olá,
Vendo produto por unidade e por kit (componentes). Mas quero saber qual foi o total vendido por unidade.
Na imagem foi vendido:
4 camisas,
5 kits contendo 3 camisas
3 kits contento 2 camisas e 1 bermuda.
Quero calcular o total de camisas:
Total de camisas = 4 + (5 * 3) + (3 * 2)
Total de camisas= 4 + 15 + 6
Total de camisas= 25
PBIX aqui
Solved! Go to Solution.
You don't need measures for this. A calculated column in the fVenda table is enough
Total Qty =
var parentCode=LOOKUPVALUE(fComponentes[CodProduto],fComponentes[CodProduto],[CodProduto])
var subqty = COALESCE(CALCULATE(sum(fComponentes[Qtde_componente]),fComponentes[CodProduto]=parentCode),1)
return subqty*[Qtde_vendida]
Hi @Vilmar ,
Generally, I don't create any relationship in this case.
Here's my solution.
1.Create a measure to get the Venda in table 'fComponentes'.
VendaInfComponentes =
CALCULATE (
SUM ( fVenda[Qtde_vendida] ),
FILTER ( 'fVenda', [CodProduto] = MAX ( 'fComponentes'[CodProduto] ) )
)
2.Create a measure to get the product.
Sum =
[VendaInfComponentes] * SUM ( 'fComponentes'[Qtde_componente] )
3.Create a measure to get the Venda in table 'dProduto'.
VendaIndProduto =
CALCULATE (
SUM ( fVenda[Qtde_vendida] ),
FILTER ( 'fVenda', [CodProduto] = MAX ( 'dProduto'[CodProduto] ) )
)
4.Create a measure to call the [SUM] meausre in table 'fComponentes' into table 'dProduto'.
Sum2 =
SUMX (
FILTER (
ALLSELECTED ( 'fComponentes' ),
[Cod_Componente] = MAX ( 'dProduto'[CodProduto] )
),
[Sum]
)
5.Now you can add them up to get the total.
Total Venda = [Sum2]+[VendaIndProduto]
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.
Hi @Vilmar ,
Generally, I don't create any relationship in this case.
Here's my solution.
1.Create a measure to get the Venda in table 'fComponentes'.
VendaInfComponentes =
CALCULATE (
SUM ( fVenda[Qtde_vendida] ),
FILTER ( 'fVenda', [CodProduto] = MAX ( 'fComponentes'[CodProduto] ) )
)
2.Create a measure to get the product.
Sum =
[VendaInfComponentes] * SUM ( 'fComponentes'[Qtde_componente] )
3.Create a measure to get the Venda in table 'dProduto'.
VendaIndProduto =
CALCULATE (
SUM ( fVenda[Qtde_vendida] ),
FILTER ( 'fVenda', [CodProduto] = MAX ( 'dProduto'[CodProduto] ) )
)
4.Create a measure to call the [SUM] meausre in table 'fComponentes' into table 'dProduto'.
Sum2 =
SUMX (
FILTER (
ALLSELECTED ( 'fComponentes' ),
[Cod_Componente] = MAX ( 'dProduto'[CodProduto] )
),
[Sum]
)
5.Now you can add them up to get the total.
Total Venda = [Sum2]+[VendaIndProduto]
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.
You don't need measures for this. A calculated column in the fVenda table is enough
Total Qty =
var parentCode=LOOKUPVALUE(fComponentes[CodProduto],fComponentes[CodProduto],[CodProduto])
var subqty = COALESCE(CALCULATE(sum(fComponentes[Qtde_componente]),fComponentes[CodProduto]=parentCode),1)
return subqty*[Qtde_vendida]
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.