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
Hello. I have a measure that is using an if statement for the result by month. I need a running sum of that monthly column
Solved! Go to Solution.
Hi @Anonymous
First, create the month column in numeric form.
To calculate the running total for another measure then just add that measure code ( if block ) into your running total code.
example code :
Monthly Comm running sum =
VAR month = MAX(Transactions[Fiscal Month])
VAR result = CALCULATE(
[MonthlyCommEarnedCalc],// OR Put if condtion measure code here
Transactions[Fiscal Month] <= month,
ALLSELECTED(Transactions)
)
Return result
check this tutorial :
https://www.youtube.com/watch?v=4gf3eueRD_g
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
First, create the month column in numeric form.
To calculate the running total for another measure then just add that measure code ( if block ) into your running total code.
example code :
Monthly Comm running sum =
VAR month = MAX(Transactions[Fiscal Month])
VAR result = CALCULATE(
[MonthlyCommEarnedCalc],// OR Put if condtion measure code here
Transactions[Fiscal Month] <= month,
ALLSELECTED(Transactions)
)
Return result
check this tutorial :
https://www.youtube.com/watch?v=4gf3eueRD_g
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks. Im new to Dax and im not sure exactly how to proceed.
@Anonymous What happens if you change your ALLSELECTED to ALL?
@Anonymous 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])
SumScoreMeasure = SUMX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.
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.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
16 | |
2 | |
2 | |
1 | |
1 |
User | Count |
---|---|
46 | |
3 | |
3 | |
2 | |
2 |