Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
rgirotra
Frequent Visitor

Calculated Measure performance enhancement

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])
)
)

1 ACCEPTED SOLUTION
CahabaData
Memorable Member
Memorable Member

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....

 

www.CahabaData.com

View solution in original post

1 REPLY 1
CahabaData
Memorable Member
Memorable Member

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....

 

www.CahabaData.com

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.