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
I have the following visual.A and B are table columns and C is a calculated measure. Can you created a rolling sum of B based on ascending order of C?
Thanks in advance.
Hi @ashamsuzzoha ,
What is the DAX formula for your measure [C]?
I need a complete sample data model.
Or you can refer to my .pbix file.
My [C] is a sorting of [A], so I add up according to [A] to avoid using measure [C].
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Can you do it without changing C to a calculated column?
Hi @a_shamsuzzoha ,
First, change column [C] to calculated column.
Measure =
CALCULATE(
SUM([B]),
FILTER(
ALLSELECTED(Table),
[C] <= MAX([C])
)
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Any help?
@a_shamsuzzoha , ascending order C or A ?
C can be a measure like
C =calculate(Sum(Table[B]), filter(allselected(Table), Table[A] <=max(Table[A])))
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 |
---|---|
110 | |
78 | |
76 | |
41 | |
37 |
User | Count |
---|---|
157 | |
113 | |
64 | |
60 | |
55 |