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

Quantidade que vendeu da unidade, mesmo vendendo o kit (componente)

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 

 

Sem título.png

2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

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]

 

View solution in original post

v-stephen-msft
Community Support
Community Support

Hi @Vilmar ,

 

Generally, I don't create any relationship in this case.

vstephenmsft_0-1647935200232.png

 

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] )

vstephenmsft_1-1647935479110.png

 

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]
)

 

vstephenmsft_2-1647935628077.png

 

5.Now you can add them up to get the total.

Total Venda = [Sum2]+[VendaIndProduto]

vstephenmsft_3-1647935669585.png

 

 

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.

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @Vilmar ,

 

Generally, I don't create any relationship in this case.

vstephenmsft_0-1647935200232.png

 

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] )

vstephenmsft_1-1647935479110.png

 

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]
)

 

vstephenmsft_2-1647935628077.png

 

5.Now you can add them up to get the total.

Total Venda = [Sum2]+[VendaIndProduto]

vstephenmsft_3-1647935669585.png

 

 

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.

lbendlin
Super User
Super User

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]

 

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.

Top Solution Authors