Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Preceding week change

I need to calculate the change in number of open tickets in the previous calendar week(8/6/23) to current calendar week(8/14/23). The change will apply each Monday when I run the report. I have the m...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Anonymous ,

     

    I think your issue should be caused by your data model.

    I suggest you to try code as below.

    Ticket Open This Week =
    VAR _END =
        TODAY () - WEEKDAY ( TODAY (), 2 ) - 1
    VAR _START = _END - 6
    RETURN
        CALCULATE (
            COUNTROWS ( 'Village Engagement' ),
            FILTER (
                ALL ( 'Village Engagement' ),
                'Village Engagement'[Date Opened] IN CALENDAR ( _START, _END )
            )
        )
    Ticket Open Last Week =
    VAR _END =
        TODAY () - WEEKDAY ( TODAY (), 2 ) - 8
    VAR _START = _END - 6
    RETURN
        CALCULATE (
            COUNTROWS ( 'Village Engagement' ),
            FILTER (
                ALL ( 'Village Engagement' ),
                'Village Engagement'[Date Opened] IN CALENDAR ( _START, _END )
            )
        )

     

    Best Regards,
    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.