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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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