Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Previous working day Total

I am trying to get a total for the previous working day total in my model 

 

My data is structured as below 

PO NoPurch DateQuantity
10000830-Sep-2140
1000101-Oct-2115
1000114-Oct-2120
10010015-Oct-2120
10010415-Oct-2150
10010118-Oct-21125
10010318-Oct-2125

 

The total for previous day should consider that 

1. if it is first day of month, previous Qty should show the total as the same as the current Qty 

2. For Monday, previous working day should be showing Friday qty 

 

Expected result is 

Purch DateTotal QtyPrevious qty
30-Sep-21400
1-Oct-211515
4-Oct-212015
15-Oct-21700
18-Oct-2115070

 

Tried using the measure 

Previous Work Day Qty =
var MaxDate = MAXX(FILTER(ALL('Calendar'), 'Calendar'[Date] < SELECTEDVALUE(Calendar[Date])), Calendar[Date])
return
CALCULATE(
SUM('Purch Fact'[Quantity]), FILTER(ALL('Calendar'), Calendar[Date] = MaxDate)
)
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Anonymous ,

    I updated your sample pbix file(see attachment), please check whether that is what you want.

    Previous Work Day Qty = 
    VAR _curdate =
        SELECTEDVALUE ( 'Purch Fact'[Purch Date] )
    VAR _preworkdate =
        CALCULATE (
            MAX ( 'Calendar'[Date] ),
            FILTER (
                ALL ( 'Calendar' ),
                'Calendar'[Date] < _curdate
                    && WEEKDAY ( 'Calendar'[Date], 2 ) <= 5
            )
        )
    RETURN
        IF (
            DAY ( _curdate ) = 1,
            [Total Qty],
            SUMX (
                FILTER ( ALLSELECTED ( 'Purch Fact' ), 'Purch Fact'[Purch Date] = _preworkdate ),
                [Total Qty]
            )
        ) + 0

     

    Best Regards

6 Replies

  • Hi,

    Please check the below picture and the attached pbix file.

    I created a calculated column in your calendar table in order to help define weekdays.

     

     

    Previous Work Day Qty =
    VAR currentdate =
    MAX ( 'Calendar'[Date] )
    VAR previousworkingdate =
    MAXX (
    FILTER (
    ALL ( 'Calendar' ),
    'Calendar'[Date] < currentdate
    && NOT ( 'Calendar'[Weekdayname CC] IN { "Saturday", "Sunday" } )
    ),
    'Calendar'[Date]
    )
    RETURN
    IF (
    HASONEVALUE ( 'Calendar'[Date] ),
    IF (
    NOT ( ISBLANK ( [Total Qty] ) ),
    SWITCH (
    TRUE (),
    SELECTEDVALUE ( 'Calendar'[Date] ) = STARTOFMONTH ( 'Calendar'[Date] ), [Total Qty],
    CALCULATE ( [Total Qty], 'Calendar'[Date] = previousworkingdate )
    ) + 0
    )
    )
     
    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks Jihwan_Kim 

       

      I can see it working in that model. 

      Trying to understand how this is working. When i try to bring this into my model, my total is showing up as 0, eventhough there is value. WIll you be able to explain that expression in the return parameter please. 

      Also, is that HASONEVALUE being false returning that 0 for my expression. Bit confused with it. 

       

      • Jihwan_Kim's avatar
        Jihwan_Kim
        Icon for Super User rankSuper User

        Hi, 

        Thank you for your message.

        Sorry to say that it is quite difficult to fully understand your question without seeing the model and visualization.

        I think you already shared the link of your model, but if it is different now, could you please let me know again the link or your model?

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

    I updated your sample pbix file(see attachment), please check whether that is what you want.

    Previous Work Day Qty = 
    VAR _curdate =
        SELECTEDVALUE ( 'Purch Fact'[Purch Date] )
    VAR _preworkdate =
        CALCULATE (
            MAX ( 'Calendar'[Date] ),
            FILTER (
                ALL ( 'Calendar' ),
                'Calendar'[Date] < _curdate
                    && WEEKDAY ( 'Calendar'[Date], 2 ) <= 5
            )
        )
    RETURN
        IF (
            DAY ( _curdate ) = 1,
            [Total Qty],
            SUMX (
                FILTER ( ALLSELECTED ( 'Purch Fact' ), 'Purch Fact'[Purch Date] = _preworkdate ),
                [Total Qty]
            )
        ) + 0

     

    Best Regards

  • Anonymous , You can try like these examples

     

    This Day = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))
    Last Day = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
    Last Day = CALCULATE(sum('Table'[Qty]), previousday('Date'[Date]))

     

     

    Day Intelligence - Last day, last non continous day
    https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c3243d1f9