Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

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 

omnamahshivay_0-1649176454529.png

 

Many Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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.

vyangliumsft_0-1649385754371.png

4. Result:

vyangliumsft_1-1649385754372.png

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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.

vyangliumsft_0-1649385754371.png

4. Result:

vyangliumsft_1-1649385754372.png

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

Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your data model looks like, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

 

Picture1.png

 

Previous value: =
VAR _currentdate =
    MAX ( Data[Date] )
VAR _previousdate =
    MAXX (
        FILTER ( ALLEXCEPT ( Data, Data[Code] ), Data[Date] < _currentdate ),
        Data[Date]
    )
VAR result =
    CALCULATE (
        [Current value:],
        FILTER ( ALL ( Data[Date], Data[Label] ), Data[Date] = _previousdate )
    )
RETURN
    IF ( HASONEVALUE ( Data[Label] ), result )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.