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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
sgeheeb
Resolver I
Resolver I

Performance issue when calculating quantity between two dates

Hi,

 

I have the following DAX-Code for a measures which calculates the total quantity between two dates:

1: EndDate is the last date in the slicer selection

2: FirstDate is the first date on which a delivery was made

 

The measures is supposed to be used in a list / matrix to display the quantity of items delivered to a customer. I cannot use the MIN() of the slicer selection, since this is used to filter for sales and deliveries may have been made before that.

This is my code:

 

Quantity Deliverd = 

//Date of first item delivery to customer
VAR firstItemDelivery = CALCULATE(
    MIN(Shipments[Posting Date]),
        ALL('Posting Date'))
//Last date in selection
VAR endDate = MAX('Posting Date'[Date])

//Calculate change of stock at customer
VAR qtyChangeinPeriod =
    CALCULATE (
        SUM (Shipments[Quantity]),
            ALL('Posting Date'[Date]),
            'Posting Date'[Date] >= firstItemDelivery,
            'Posting Date'[Date] <= endDate
        )
RETURN qtyChangeinPeriod

 

When I use this in a list with Items and Customers, the computation runs out of memory.

Does anyone have an idea why this is happening? In my optionion this is not an extraordinarily expansive operation.

 

Cheers

1 REPLY 1
lbendlin
Super User
Super User

Fire up your copy of DAX Studio and examine the query plan for that measure. Check for cross joins. Refactor.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors