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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
diegoa2f
Frequent Visitor

Average

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.

 

diegoa2f_0-1688681216972.png

 

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.

 

1 REPLY 1
Greg_Deckler
Super User
Super User

@diegoa2f 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?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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