Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Dax Help

Hi All, I'm trying to bring in values for previous week looking for DAX please see below requirement & Output, any help would be highly appreciated & Thanks in advance Current table    Many...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  Anonymous ,

    Here are the steps you can follow:

    1. Create calculated column.

    week = WEEKNUM('Table'[Date],1)

    2. Create measure.

    Previous Value =
    var _week=WEEKNUM(MAX('Table'[Date]),1)
    return
    CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[week]=_week-1))
    Flag =
    var _today=TODAY()
    var _week=WEEKNUM(_today,1)
    return
    IF(
        WEEKNUM(MAX('Table'[Date]),1)=_week-1,1,0)

    3. Place [Flag]in Filters, set is=1, apply filter.

    4. Result:

    Please click here for the pbix file

    Best Regards,

    Liu Yang

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