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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Measure grouping

Hi, I'm pretty new to power bi and dax, but haven't had luck with finding an example that fits what I'm trying to do.

 

I'm trying to get the following - I've created a new measure as shown in the image below. I've put the results into a matrix with Event as columns and Team as rows and the values come out fine, however what I want for the total column for each team is the Average of Events as opposed to performing the measure without respect to the events.

 

I think I need some combination of Calculate, Group By or summarize, but I haven't been able to wrap my head around how to get what I want. Any help would be welcome!

 

 

Measure Example.png

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous,

 

Create the following two measures:

Percent_Team =
DIVIDE ( SUM ( 'Table'[T1] ); SUM ( 'Table'[T1] ) + SUM ( 'Table'[T2] ) )


Total Percent =
IF (
    HASONEVALUE ( 'Table'[Event] );
    [Percent_Team];
    AVERAGEX (
        SUMMARIZE (
            'Table';
            'Table'[Team];
            'Table'[Event];
            "Average_Total"; [Percent_Team]
        );
        [Average_Total]
    )
)

Then use your second measure to create your table visual:

 

AVertage.png

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @Anonymous,

 

Create the following two measures:

Percent_Team =
DIVIDE ( SUM ( 'Table'[T1] ); SUM ( 'Table'[T1] ) + SUM ( 'Table'[T2] ) )


Total Percent =
IF (
    HASONEVALUE ( 'Table'[Event] );
    [Percent_Team];
    AVERAGEX (
        SUMMARIZE (
            'Table';
            'Table'[Team];
            'Table'[Event];
            "Average_Total"; [Percent_Team]
        );
        [Average_Total]
    )
)

Then use your second measure to create your table visual:

 

AVertage.png

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Anonymous
Not applicable

Perfect, thank you!

 

I thought I had to do it in one stage, but this makes sense and really helps me understand the summarize function too!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.