Este fórum está sendo desativado

Depois de 9 anos, este fórum será desativado. Mas calma.... estamos migrando para uma comunidade no DISCORD. Junte-se a nós.

ENTRAR PARA DISCORD

Assuntos relacionados a criação de medidas, fórmulas e funções DAX, relacionamentos etc
Por ThiagoOrtiz
#70513
Ola a todos, tenho duas medidas DAX
Um somando a quantidade cadenciada conforme filtro
TesteCad =
var DataInicial = MIN('Date'[Date])
var DataFinal = MAX('Date'[Date])
var _Lote = VALUES(LotDailyCadence[LotNumber])
Return
DIVIDE(
SUMX(FILTER(All(LotDailyCadence),LotDailyCadence[Date]>= DataInicial && LotDailyCadence[Date]<= DataFinal && LotDailyCadence[LotNumber] IN _Lote),LotDailyCadence[TotalProgrammableCadence]),1000)

e a outra somando quantidade Total conforme filtro
TesteTotal =
var DataInicial = MIN('Date'[Date])
var DataFinal = MAX('Date'[Date])
var _Lote = VALUES(LotDailyCadence[LotNumber])
Return
DIVIDE(SUMX(FILTER(all(LotDailyCadence),LotDailyCadence[Date]= DataFinal && LotDailyCadence[LotNumber] IN _Lote),LotDailyCadence[Lots.TotalQuantity]),1000)

Eu preciso fazer uma verificação caso a soma do "TesteCad" seja maior que a soma do "TesteTotal", considera o "TesteTotal" senão "TesteCad"

para isso utilizei a função switch
Calculate =
SWITCH(TRUE(), [TesteCad]>[TesteTotal],[TesteTotal], [TesteCad])

mas a somatória da coluna na matriz não fica correto


Imagem

Alguem poderia me auxiliar
Por Vilmar
Posts
#70516
Tente:
Código: Selecionar todos
Calculate =
SUMX (
    VALUE ( Tabela[LotNumber] ),
    CALCULATE (
        SWITCH ( TRUE (), [TesteCad] > [TesteTotal], [TesteTotal], [TesteCad] )
    )
)
long long title how many chars? lets see 123 ok more? yes 60

We have created lots of YouTube videos just so you can achieve [...]

Another post test yes yes yes or no, maybe ni? :-/

The best flat phpBB theme around. Period. Fine craftmanship and [...]

Do you need a super MOD? Well here it is. chew on this

All you need is right here. Content tag, SEO, listing, Pizza and spaghetti [...]

Lasagna on me this time ok? I got plenty of cash

this should be fantastic. but what about links,images, bbcodes etc etc? [...]

Estamos migrando para uma comunidade no Discord