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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.