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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DebbieE
Community Champion
Community Champion

DAX Get the Average and Find the Maximum for both the category and the Value

I have the following example table (JUst popped in a few examples

 

Date Category Value

01/01/2018    A    20

01/01/2018    A    23

01/01/2018    B    1

01/01/2018    C    1

01/01/2018    B    34

01/01/2018    D    2

etc

 

 

So I need to find the Average for each category and then just show the category with the Max Average. So this would be 2 measures. The Max average and the category with the Max Average I believe

 

Getting the average is easy. So for example 

Avg = AVERAGE(Table1[Value])

 

Date               Category        Avg            Total Count of Category

01/01/2019     A                    31.33         3

01/01/2019     B                    1.00           1

01/01/2019     C                    12.50         2

01/01/2019     D                   24.00          1

 

So by the end of this I would want to be left with (I added a slicer on date)

 

Date               Category        Avg            Total Count of Category

01/01/2019     A                    31.33         3

 

Any help would be appreciated

 

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

@DebbieE

 

One way could be to use a TOPN visual filter as follows

 

topn visual filter.png


Regards
Zubair

Please try my custom visuals

View solution in original post

@DebbieE

Download file with working example here

View solution in original post

6 REPLIES 6
AlB
Super User
Super User

Hi @DebbieE

 

Try this:

 

1. Create this measure that uses the one ([Avg]) that you already have:

 

ShowMeasure =
IF (
    [Avg]
        = MAXX (
            CALCULATETABLE (
                DISTINCT ( Table1[Category] );
                ALL ( Table1[Category] )
            );
            [Avg]
        );
    1
)

 

2. Place [ShowMeasure] in the visual level filters and select 'Show items when the value is' --> 1 

DebbieE
Community Champion
Community Champion

I cant get this DAX working unfortunately. Should it contain ;   ? It goes wrong when I get to ALL

 

I tried changing ; to , and I still get the syntax for AVG is incorrect (My AVG measure is working fine)

@DebbieE

Download file with working example here

DebbieE
Community Champion
Community Champion

perfect thank you

Zubair_Muhammad
Community Champion
Community Champion

@DebbieE

 

One way could be to use a TOPN visual filter as follows

 

topn visual filter.png


Regards
Zubair

Please try my custom visuals

I was worried that would want it as a DaX query but fingers crossed they may be happy with that. Thank you so much. Ill just make sure that they are happy and mark as solved

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors