The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi PowerBI Community,
I'm new here and exploring PowerBI for creating measures and subtotals. Please excuse any grammatical errors, as English is not my first language.
I'm facing a challenge with subtotaling in PowerBI. I have a measure that calculates data using a switch function to alternate between three different calculations: one for actual data, one for predictions based on existing data, and one for planned values.
This measure is then used in a diagram, as shown in the attached screenshot.
My objective is to create a new measure that cumulatively sums these calculated values for each month. For example, I'd like the cumulative value to be -59 in January, then increase to 100 by February, continuing in this manner.
Is it possible to achieve this cumulative sum using the existing measure as the basis, rather than directly using the raw data behind the measure's formula?
Hi @Larsv ,
I made simple samples and you can check the results below:
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-tianyich-msft,
Thank you for your reply. Unfortunately, I do not have a column where the values are stored. The values are calculated using three measures, which I then switch through for my condition.
I want to add up these measures.
Thank you.
Regards, Lars
@Larsv This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.
You could maybe use this along with your measure:
Better Running Total - Microsoft Fabric Community
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
78 | |
66 | |
52 | |
51 |
User | Count |
---|---|
127 | |
116 | |
78 | |
64 | |
63 |