Forum Discussion

electrobrit's avatar
electrobrit
Post Patron
7 years ago
Solved

Week over Week HELP!

I am doing a report on something I thought would be so simple but it's not working.  I have to show Cases opened in the week, compared to last week (there are filters they will have by team or indiv...
  • v-cherch-msft's avatar
    7 years ago

    Hi electrobrit

     

    You may add a week of year column first in Query Editor. Then you may refer to below measure to get the table as requested.

    LastWeekTotal =
    CALCULATE (
        COUNT ( VW_Cases[CaseCreatedOn] ),
        FILTER (
            ALL ( VW_Cases ),
            VW_Cases[Week of Year]
                = MAX ( VW_Cases[Week of Year] ) - 1
        )
    )
    WeekOverWeek =
    VAR thisweek =
        CALCULATE (
            COUNT ( VW_Cases[CaseCreatedOn] ),
            FILTER (
                ALL ( VW_Cases ),
                VW_Cases[Week of Year] = MAX ( VW_Cases[Week of Year] )
            )
        )
    VAR lastweek =
        CALCULATE (
            COUNT ( VW_Cases[CaseCreatedOn] ),
            FILTER (
                ALL ( VW_Cases ),
                VW_Cases[Week of Year]
                    = MAX ( VW_Cases[Week of Year] ) - 1
            )
        )
    RETURN
        DIVIDE ( thisweek - lastweek, lastweek )

     

    Regards,

    Cherie