This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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:
Solved! Go to Solution.
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.
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.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 30 | |
| 24 | |
| 23 |