Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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])))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
85 | |
66 | |
52 | |
47 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |