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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.