This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
I have created a measure to calculate the Last 45-day cumulative SalesValue for particular SKU of selected Date.
this measure is taking more time than expected to load the data.
is there any better way to write this query?
this is my measure query
Rtn Sales Value (45) =
CALCULATE (
SUM(ReturnTable[Sales Value]),
FILTER (
ALL ( ReturnTable ),
ReturnTable[Created Date] > MAX ( ReturnTable[Created Date] ) - 45
&& ReturnTable[Created Date] <= MAX ( ReturnTable[Created Date] ) && ReturnTable[SKU] = MAX(ReturnTable[SKU])
)
)
Solved! Go to Solution.
Alternate dax statement does same thing:
CALCULATE( [Total Sales],
DATESINPERIOD( Dates[Date], MAX( Dates[Date] ), -30, Day ) )
am using generic table/field names, not yours, 30 day example of course - and Dates table is just that ....assume you have one...
I've never seen a statement that this would be faster so am interested if it is, hope you'll post....
Alternate dax statement does same thing:
CALCULATE( [Total Sales],
DATESINPERIOD( Dates[Date], MAX( Dates[Date] ), -30, Day ) )
am using generic table/field names, not yours, 30 day example of course - and Dates table is just that ....assume you have one...
I've never seen a statement that this would be faster so am interested if it is, hope you'll post....
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 45 | |
| 26 | |
| 24 |