Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register 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]
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 30 | |
| 23 |