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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Kylie
New Member

Sum and average values in one measure

Hi,

 

I have a measure always filtered by one text column (Type Name):

Kylie_0-1652638060642.png

These values are historized on a quarterly basis (with the first date of the quarter). And now I need to implement the following logic: when evaluating multiple quarters at the same time (for example, having multiple choice in the date column filter), the measure numbers should be averaged. In the case of one quarter, the values should be summarized.

 

I can't think of any ideas, so any tips will help me!

Thanks in advance

Kylie

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Kylie,

You can write a measure with a switch function to check the filter selections, then you can navigate to the different expressions based on the selected value.

formula =
VAR selceted =
    SELECTEDVALUE ( NewTable[Type Name] )
RETURN
    SWITCH (
        selceted,
        "Sum", SUM ( Table[Sale] ),
        "Average", AVERAGE ( Table[Sale] )
    )

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Kylie,

You can write a measure with a switch function to check the filter selections, then you can navigate to the different expressions based on the selected value.

formula =
VAR selceted =
    SELECTEDVALUE ( NewTable[Type Name] )
RETURN
    SWITCH (
        selceted,
        "Sum", SUM ( Table[Sale] ),
        "Average", AVERAGE ( Table[Sale] )
    )

Regards,

Xiaoxin Sheng

Whitewater100
Solution Sage
Solution Sage

Hi Kylie:

Please see attached file with the results I hope you are excpecting.

https://drive.google.com/file/d/1JFg76rkWlb4PgO361geAg5Jz_ImVTawk/view?usp=sharing 

I have set up a file with a basic model and calulations. If you select one quarter,the results are just for that Qtr, when selecting multiple Q's the results are averaged. I used some made up data to demonstrate.

 

Whitewater100_0-1652640638777.png

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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