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 again.
Still cannot figure out the DAX to solve my issue:
First column is yearmonth
Second column is monthly sales
Third column is cumulative sales since the launch of the product (e.g., 659 = 655+4), calculated via the following Measure:
Fourth column is rolling 3 month sum of Second column (e.g. 64 = 28+4+32), calculated via the following Measure
Could anyone please help ?
Thank you in advance.
Solved! Go to Solution.
Sorry, I'm not sure what you mean. I believe the measure creates a cumulative sum of your rolling 3 month sales.
"Fifth column ... WHAT IS THE MEASURE'S EXPRESSION for the 3M_Rolling_CUMULATIVE_Sales?"
Isn't that what you need?
Proud to be a Super User!
Paul on Linkedin.
Try:
3 Month Cumulative =
SUMX (
SUMMARIZE (
FILTER (
ALL ( 'Calendar' ),
'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
),
'Calendar'[YearMonth],
"3MonthRSales", [3M_Rolling_Sales]
),
[3MonthRSales]
)
Proud to be a Super User!
Paul on Linkedin.
Getting close: This created the cumulative sum of the total column since product launch. How limit that to a 3 month rolling sum ?
Sorry, I'm not sure what you mean. I believe the measure creates a cumulative sum of your rolling 3 month sales.
"Fifth column ... WHAT IS THE MEASURE'S EXPRESSION for the 3M_Rolling_CUMULATIVE_Sales?"
Isn't that what you need?
Proud to be a Super User!
Paul on Linkedin.
Awesome ! Actually it worked great. Previous issue was myy mistake. Was taking the wrong variable !!
@JMSNYC , Create a measure like this with date table and try
Rolling 3 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-3,MONTH))
Unfortunately, it does not work. This is the formula I used in Column 4 (with LASTDATE vs. MAX), but still gives me same output 😞
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.
User | Count |
---|---|
121 | |
87 | |
75 | |
55 | |
45 |
User | Count |
---|---|
135 | |
121 | |
77 | |
65 | |
64 |