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
MarcusR1
Helper I
Helper I

How to calculate the last 6 months orders for each customer

I have three tables (I hope the table names are self-explanatory) and I am tryign to create a measure that will return the value of sales in the last six months for each customer, but the measure is blank - can anyone see what I'm doing wrong? thanks!

 

Last 6mo Orders = CALCULATE(

sum(ORDER_ITEMS[TotalPrice])-SUM(ORDERS[Discount]),

DATESINPERIOD(ORDERS[OrderDate],

    TODAY(),

   -12,MONTH)

)

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @MarcusR1 

 

You can try the following methods.

Last 6mo Orders = 
CALCULATE (
    SUM ( ORDER_ITEMS[TotalPrice] ) - SUM ( ORDERS[Discount] ),
    FILTER ( ALL ( ORDERS ),
        [OrderDate] <= TODAY ()
            && [OrderDate] >= EDATE ( TODAY (), -12 )
    )
)

vzhangti_0-1679623354349.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
MarcusR1
Helper I
Helper I

Thank you so much, that worked!

v-zhangti
Community Support
Community Support

Hi, @MarcusR1 

 

You can try the following methods.

Last 6mo Orders = 
CALCULATE (
    SUM ( ORDER_ITEMS[TotalPrice] ) - SUM ( ORDERS[Discount] ),
    FILTER ( ALL ( ORDERS ),
        [OrderDate] <= TODAY ()
            && [OrderDate] >= EDATE ( TODAY (), -12 )
    )
)

vzhangti_0-1679623354349.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.