March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
126 | |
85 | |
69 | |
53 | |
44 |
User | Count |
---|---|
204 | |
105 | |
99 | |
64 | |
54 |