This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi
I have a problem that i cant solve.
I have a tabel with dates and sales, and i want to be able to see the sales with a lag of 5 days.
So the the sales on 2023-09-01 should be counted shown on 2023-09-06 as shown in the picture (red column).
It needs to be a measure.
Thx so much for any help or suggestion .
Solved! Go to Solution.
Two measure will do it. The first one to sum the sale amount
Sales Amount = SUM ( YourTable[Sales] )
Then one to offset the calculation by 5 days
Sales +5 days =
CALCULATE ( [Sales Amount], DATEADD ( YourTable[Date], -5, DAY ) )
.
Two measure will do it. The first one to sum the sale amount
Sales Amount = SUM ( YourTable[Sales] )
Then one to offset the calculation by 5 days
Sales +5 days =
CALCULATE ( [Sales Amount], DATEADD ( YourTable[Date], -5, DAY ) )
.
Thx so much for the help . Works perfect 🙂
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 30 | |
| 23 | |
| 22 |