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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.