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
powerbi2srm
Resolver II
Resolver II

Sum sales of last working days

I want to calculate sales of last three WORKING days. I have a boolean column in table dates (is_not_working_day) which it checks "TRUE" when it isn't working day. 

working_day.png

In addition, I have created a table that returns the record of the last time the report was updated.
update.png

I want it to return me the sum of the sales (SUM(sale_order[sales_amount])) of the last 3 WORKING days. For example if today is Friday and Thursday was NOT a business day, I should sum the sales for Wednesday, Tuesday, and Monday.


Thank you so much!!!

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

I hope the below can provide some ideas on how to create a solution for your datamodel.

 

Jihwan_Kim_1-1686626273817.png

 

 

Jihwan_Kim_0-1686626241423.png

 

 

last 3 working days sales: =
VAR _currentrowdate =
    MAX ( 'Calendar'[Date] )
VAR _t =
    FILTER (
        ALL ( 'Calendar' ),
        'Calendar'[is_not_working_day] = FALSE ()
            && 'Calendar'[Date] < _currentrowdate
    )
RETURN
    CALCULATE (
        SUM ( Sales[Sales] ),
        WINDOW ( 1, ABS, 3, ABS, _t, ORDERBY ( 'Calendar'[Date], DESC ) )
    )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


powerbi2srm
Resolver II
Resolver II

Please, anyone can help me? @amitchandak @Greg_Deckler  @lbendlin @Ashish_Mathur @Ahmedx  @ryan_mayu @jdbuchanan71 @Jihwan_Kim Thank you so much!

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.