Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext 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
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 25 |