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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

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.


Click here to visit 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
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.