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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

DAX Code Functions while using slicer

Hello! I have been struggling to find an efficient way to filter my data in a card using measures (and DAX). I am currently pretty new to the language so I am not sure what really is capable or not. With saying that I will explain the issue I am having and am open to any other comments and or critiscims. 

 

I currently want to display a card value of a sum of values dependendant on the year.  For example my data table is setup similar to that below. 

 

Year      Building    Total MTeCO2

2015      AAA          xx

2015      AA            xx

2016      AAAA       xxx 

2016      AAA         xx

2016      AA           xxxx 

2017      AAA         x 

2017      AA            xx

 

Ideally I would not like to create a custom column or table. I was hoping to be ableto use a a slicer to filter the table by years then be able to sum the values for that specific year as needed. The DAX code I have been using reads: 

 

"Measure = CALCULATE(sum(Building_Reports2[Total MTeCO2]),Building_Reports2[Year])"
 
Unfortunately this code does not find the sum of the values for the specific year that is filtered but rather finds the sume of the entire unfiltered table. 
 
Any tips, comments  or suggestions are welcomed! Thanks!
 
Austin I (: 
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

How about this measure

Measure =
CALCULATE (
    SUM ( Building_Reports2[Total MTeCO2] ),
    ALLSELECTED ( Building_Reports2[Year] )
)

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

How about this measure

Measure =
CALCULATE (
    SUM ( Building_Reports2[Total MTeCO2] ),
    ALLSELECTED ( Building_Reports2[Year] )
)

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.