Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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 Thanks
Solved! Go to Solution.
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
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
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.
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 )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
6 | |
4 | |
3 |