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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
charleshale
Continued Contributor
Continued Contributor

Totalling selected values

Let's say I have a table named FRUIT that looks like this:

 

TYPE    QUANTITY

Bananas   2

Oranges   3

Kiwi          4

 

My goal is to Sum only Bananas and Oranges and have those sums show only when they are selected in a visual filter.   No problem!   All I have to do is write the following measure:

 

FruitSum =
VAR _Sum =
    CALCULATE ( SUM ( Fruit[Quantity] ) )
RETURN
    IF ( SELECTEDVALUE ( Fruit[Type] IN { "Bananas", "Oranges" } ), _Sum, BLANK () )

 

This works....but there is a catch:    I can't get the Total to show in a matrix visual (or any other way).

 

In other words, if I have a filter on the visual that shows only Bananas and Oranges, I get 

 

Bananas   2

Oranges   3

Total      

 

However what I would like is to show the total....

Bananas   2

Oranges   3

Total      5

 

Note - this outcome would be acceptable too

Bananas   2

Oranges   3
Kiwis       4 

Total      5

 

Thoughts on how to code?   Thank you!

 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

Jihwan_Kim_0-1666759386023.png

 

 

expected measure one: = 
CALCULATE (
    SUM ( Fruit[Quantity] ),
    KEEPFILTERS ( Fruit[Type] IN { "Bananas", "Oranges" } )
)

 

expected measure two: = 
IF (
    HASONEVALUE ( Fruit[Type] ),
    SUM ( Fruit[Quantity] ),
    CALCULATE (
        SUM ( Fruit[Quantity] ),
        KEEPFILTERS ( Fruit[Type] IN { "Bananas", "Oranges" } )
    )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

Jihwan_Kim_0-1666759386023.png

 

 

expected measure one: = 
CALCULATE (
    SUM ( Fruit[Quantity] ),
    KEEPFILTERS ( Fruit[Type] IN { "Bananas", "Oranges" } )
)

 

expected measure two: = 
IF (
    HASONEVALUE ( Fruit[Type] ),
    SUM ( Fruit[Quantity] ),
    CALCULATE (
        SUM ( Fruit[Quantity] ),
        KEEPFILTERS ( Fruit[Type] IN { "Bananas", "Oranges" } )
    )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

@jiwhan_Kim

Perfect - you are a dax genius!  Kudos!

raimon
Resolver II
Resolver II

Hi @charleshale

 

Not sure if I understood properly. Since if you are selecting values in the visual filter, that should automatically filter down the sum of values. 

 

However try this - 

1. Create a list that will return all values selected - 

List = CONCATENATEX(values('Fruit'[TYPE]),'Fruit'[TYPE],",")
 
2. Create a measure for the totals- 
Total = CALCULATE(SUM('Fruit'[QUANTITY]),FILTER('Fruit','Fruit'[TYPE] in {[List]}))
 
Let me know if this is what you are after. 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors