cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Avermaak
Frequent Visitor

Day to day Difference

Good day, 

 

I am trying to calculate the day to day difference based on weekdays only, for my daily banking movement. 

I have would like the table to look as follows:

Avermaak_0-1671029209802.png

I used the following formula to calculate the difference but it does not take into account the weekends, how can I change my formula to exclude the weekends from the calculations and only base it on weekdays.

 

Movement =
VAR __PREV_DAY =
    CALCULATE(
        SUM('BST_INPUT'[Per Collect]),
        DATEADD('BST_INPUT'[Date],1,DAY)
    )
RETURN
    SUM('BST_INPUT'[Per Collect]) - __PREV_DAY
1 REPLY 1
IIPowerBlog
Helper I
Helper I

Hello. Try adding the WEEKDAY function to your formula, https://learn.microsoft.com/en-us/dax/weekday-function-dax 

Helpful resources

Announcements
March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

Top Solution Authors