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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Função DAX comparar linha a linha

Preciso fazer a seguinte tratativa, Se a moeda selecionada for "Real" Tenho que executar o código que multiplique o [ValorFOBTotalTM] pela'DW VW_CAMBIO'[Cotacao] daquele determinado

'DW VW_CAMBIO'[AnoMes], sendo que levando em consideração que a cotacao a ser trazida é apenas referente se a
'DW VW_CAMBIO'[IDMoeda] for igual a "2".

 

A tabela 'DW dimData[AnoMes] da base de dados não está relacionada ao 'DW VW_CAMBIO'[AnoMes] se eu relaciona-las manualmente através do Modelo pode ocorrer problemas.

 

Fiz um código mas ele está me retornando o seguinte erro: "Uma função 'PLACEHOLDER' foi utilizada em uma expressão True/False usada como expressão de filtro de tabela. Isso não é permitido."

 

Medida1 = 

IF (
    SELECTEDVALUE('DW dimMoeda'[DescMoeda]) == "Real",
        SUMX(
        'DW fatImportacaoCOMEX', 
        CALCULATE(MAX('DW fatImportacaoCOMEX'[ValorFOBTotalTM]),
        SWITCH(TRUE(),
        HASONEVALUE('DW VW_CAMBIO'[IDMoeda]), 
        SWITCH(TRUE(),
        SELECTEDVALUE('DW VW_CAMBIO'[IDMoeda]) == 2,
        1
    
   * MAX('DW VW_CAMBIO'[Cotacao])
        ),'DW fatImportacaoCOMEX'[SomaFOBTotal]
            )
        )
        )
)

 Quem puder me ajudar vou agradecer muito!

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

Please have a try.

Measure= VAR _A=MAX('DW fatImportacaoCOMEX'[ValorFOBTotalTM])*MAX('DW VM_CAMBIO'[Cotacao])
return
IF (max('DW dimMoeda'[DescMoeda]) ="Real",_a,If(  max('DW VW_CAMBIO'[IDMoeda]) = 2,1 * MAX('DW VW_CAMBIO'[Cotacao]),max('DW fatImportacaoCOMEX'[SomaFOBTotal]))

 

If I have misunderstood your meaning, Please provide more data and conditions according to the output you want.

 

How to Get Your Question Answered Quickly 

 

Best Regards
Community Support Team _ Polly

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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