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.
Hello Community!
Having difficulties with calculation of amount in a quarter which is cumulative total for last 4 quarters. E.G. q4 2022 should show q1-q4 2022 sum,q3 2022 should show q4 2021 - q3 2022 and so on. What I've manged to do - create measure which actually calculates needed amount but it is "too dummy" and I need better solution.
<>___Last4QtrTotal =
CALCULATE( [amount], DATEADD(Period[Date],-3,QUARTER)) +
CALCULATE( [amount], DATEADD(Period[Date],-2,QUARTER)) +
CALCULATE( [amount], DATEADD(Period[Date],-1,QUARTER)) +
[amount]
Sample of data and needed output below:
year | quarter | amount | total for last 4 qtr |
2020 | q1 | 50 | 50 |
2020 | q2 | 60 | 110 |
2020 | q3 | 70 | 180 |
2020 | q4 | 80 | 260 |
2021 | q1 | 90 | 300 |
2021 | q2 | 100 | 340 |
2021 | q3 | 110 | 380 |
2021 | q4 | 120 | 420 |
2022 | q1 | 130 | 460 |
2022 | q2 | 140 | 500 |
2022 | q3 | 150 | 540 |
2022 | q4 | 160 | 580 |
Solved! Go to Solution.
@bsas , You can try a measure like
Rolling 4= CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date],MAX('Date'[Date]),-4,QUARTER))
Rolling Months Formula: https://youtu.be/GS5O4G81fww
@bsas , You can try a measure like
Rolling 4= CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date],MAX('Date'[Date]),-4,QUARTER))
Rolling Months Formula: https://youtu.be/GS5O4G81fww
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 |
---|---|
143 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
218 | |
88 | |
83 | |
65 | |
56 |