Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi all,
I wonder if anyone can point me in the right direction with this.
I'm trying to get a value for the previous week (selected date-7) according to the selected date.
Now this gives me the value for the selected date:
Solved! Go to Solution.
Hi,
Try this aproach
Total = SUM('F - Actual and Projected EFTSL'[Actual EFTSL])
Total in previous week = calculate([Total],datesbetween(calendar[date],min(calendar[date])-7,min(calendar[date)))
Hope this helps.
Hi @DHB ,
Based on my testing, please try the following methods:
1.Create the sample table.
2.Create the measure to calculate the previous week.
PreviousWeekEFTSL =
CALCULATE(
SUM('Table'[Values]),
DATESBETWEEN('Table'[Date], MIN('Table'[Date]) - 7, MIN('Table'[Date]))
//DATEADD('Table'[Date], -7, DAY)
)
3.Drag the date column into the slicer visual.
4.Select the date. The result is shown below.
DATESBETWEEN function (DAX) - DAX | Microsoft Learn
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @DHB ,
Based on my testing, please try the following methods:
1.Create the sample table.
2.Create the measure to calculate the previous week.
PreviousWeekEFTSL =
CALCULATE(
SUM('Table'[Values]),
DATESBETWEEN('Table'[Date], MIN('Table'[Date]) - 7, MIN('Table'[Date]))
//DATEADD('Table'[Date], -7, DAY)
)
3.Drag the date column into the slicer visual.
4.Select the date. The result is shown below.
DATESBETWEEN function (DAX) - DAX | Microsoft Learn
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Try this aproach
Total = SUM('F - Actual and Projected EFTSL'[Actual EFTSL])
Total in previous week = calculate([Total],datesbetween(calendar[date],min(calendar[date])-7,min(calendar[date)))
Hope this helps.
How do I apply this logic with W-1. E.g. I want to sum the total qty which falls in W-1. My table consist of product name, qty, date.
Share some data, explain the question and show the expected result.
What about something like:
Prior Week Version = VAR priorDate = SELECTEDVALUE('F - Actual and Projected EFTSL'[Snapshot Date]) - 7
VAR output = CALCULATE(
SUM('F - Actual and Projected EFTSL'[Actual EFTSL]),
ALL('F - Actual and Projected EFTSL'[Snapshot Date]),
'F - Actual and Projected EFTSL'[Snapshot Date] = priorDate
)
RETURN
output
Thank you @RossEdwards. Now that query doesn't error but it returns a blank in my table for some reason.
If I create a test measure just using this I do get the right date though:
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |