Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi all, I hope you can help me.
I've the following problem, I'd to average the first quarter and aslo the second quarter, of a matrix that I created. This is mi code dax to create this matrx.
Comportamiento =
VAR CategoriaHUentreCompleto =
CALCULATE(
[Clientes],
ALLEXCEPT(Data, Data[fecha_mes], Data[Fecha_Año], Data[Trimestres], Data[Segmento], Data[Ubicación.Columna2])
)
VAR AntiguedadentreHU =
CALCULATE(
[Clientes],
ALLEXCEPT(Data, Data[fecha_mes], Data[Fecha_Año], Data[Trimestres], Data[CategoríaHU.EstadoHU], Data[Segmento], Data[Ubicación.Columna2])
)
VAR CancelaltionentreAntiguedad =
CALCULATE(
[Clientes],
ALLEXCEPT(Data, Data[fecha_mes], Data[Fecha_Año], Data[Trimestres], Data[CategoríaHU.EstadoHU], Data[Antiguedad], Data[Segmento], Data[Ubicación.Columna2])
)
VAR CancelaltionSubTypeEntreAntiguedad =
CALCULATE(
[Clientes],
ALLEXCEPT(Data, Data[fecha_mes], Data[Fecha_Año], Data[Trimestres], Data[CategoríaHU.EstadoHU], Data[Antiguedad], Data[Cancellation Type], Data[Segmento], Data[Ubicación.Columna2])
)
RETURN
SWITCH(
TRUE(),
ISINSCOPE(Data[Cancellation Subtype]), DIVIDE([Clientes], CancelaltionSubTypeEntreAntiguedad),
ISINSCOPE(Data[Cancellation Type]), DIVIDE([Clientes], CancelaltionentreAntiguedad),
ISINSCOPE(Data[Antiguedad]), DIVIDE([Clientes], AntiguedadentreHU),
ISINSCOPE(Data[CategoríaHU.EstadoHU]), DIVIDE([Clientes], CategoriaHUentreCompleto))
Making this syntax I could create the next matrix.
I would like to average the first quarter (4,72%, 4,50%, 4,97%) and also the second quarter (4,54%, 4,96%, 4,52%), both have the following name (trim. 1 and trim. 2).
Are there any syntax to calculate them, I tried with AVERAGEX but I couldn't get it.
Hope yoy can help me.
Best regards.
Diego F.
@Anonymous First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8
If possible, can you post sample data or your PBIX file?
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 41 | |
| 27 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 126 | |
| 108 | |
| 55 | |
| 39 | |
| 33 |