Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Buenas tardes, me encuentro ante esta dificultad:
El objetivo es sumar la cantidad que cumple con estos requisitos:
Probé con la función CONTAINS pero no me lo permitió.
La función que yo armé es la siguiente:
Alguna idea de cómo soucionarlo?
Desde ya, muchas gracias
Marce
Solved! Go to Solution.
Hi @MMPagola ,
You could use IN VALUES('table'[column]).
PP ALTA FINAL = CALCULATE(SUM(Movimientos[Cantidad]), FILTER(ALL(Movimientos), Movimientos[Alta] = "TRUE" && Movimientos[DepositoDestino_id] = 3 && Movimientos[CodigoTicketDestino] in VALUES(Pedidos[Numero])))
Best Regards,
Jay
Hi @MMPagola ,
You could use IN VALUES('table'[column]).
PP ALTA FINAL = CALCULATE(SUM(Movimientos[Cantidad]), FILTER(ALL(Movimientos), Movimientos[Alta] = "TRUE" && Movimientos[DepositoDestino_id] = 3 && Movimientos[CodigoTicketDestino] in VALUES(Pedidos[Numero])))
Best Regards,
Jay
@MMPagola , You have try something like
PP ALTA FINAL = CALCULATE(SUM(Movimientos[Cantidad]), FILTER(Movimientos, Movimientos[Alta] = TRUE() && Movimientos, Movimientos[DepositoDestino_id] = 3 && search(max(Pedidos[Numero]), Movimientos[CodigoTicketDestino], ,0)>0))
El numero no debe ser más mayor a cero. No es solución. Gracias
User | Count |
---|---|
81 | |
75 | |
74 | |
42 | |
36 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |