Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
[ES]
Hola a todos, estoy intentando hacer algo que paso a explicar a continuación, pero no tengo mucha experiencia en DAX.
Mis datos:
Cliente | Importe
A | 5
B | -10
A | -3
C | -5
C | -10
B | -7
B | 25
A | 1
C | 5
Paso intermedio
Cliente | Importe
A | 3
B | 8
Valor final que debo mostrar:
11
En síntesis, debo mostrar la suma de importes de los clientes cuya suma > 0
[EN]
Hello everyone, I'm trying to do something that I'll explain next, but I do not have much experience in DAX.
My data:
Cliente | Importe
A | 5
B | -10
A | -3
C | -5
C | -10
B | -7
B | 25
A | 1
C | 5
Intermediate step
Cliente | Importe
A | 3
B | 8
Final value that I must show
11
In summary, I must show the sum of customer amounts whose sum> 0
Thanks!
Solved! Go to Solution.
Hi,
Try this measure
=SUMX(FILTER(SUMMARIZE(VALUES(Data[Clientele]),[Clientele],"ABCD",SUM(Data[Importe])),[ABCD]>0),[ABCD])
Hope this helps.
Hi,
Try this measure
=SUMX(FILTER(SUMMARIZE(VALUES(Data[Clientele]),[Clientele],"ABCD",SUM(Data[Importe])),[ABCD]>0),[ABCD])
Hope this helps.
It works! thanks!
It helped me a lot.
Greetings from Argentina!
You are welcome.
I forgot sth, I need this to put in a Card
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |