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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
I'm trying to do solve the next problem and I'm not able.
I've the next table in my BBDD:
Date Qty Prev_week
Date = Day of the record.
Qty = Integer that refers the units of a product
Prev_week = Last day of the previous week (considering Date field).
I want to do a calculated column that shows the Qty value of the record with the Date is equal to the Prev_week of the current record. For example:
Date Qty Prev_week Prev_Qty
20/01/2018 3 14/01/2018 0
21/01/2018 5 14/01/2018 0
22/01/2018 4 21/01/2018 5
I've tried everything that ocurred to me, but I didn't get successful
Thank's in advance
Solved! Go to Solution.
In your scenario, did you mean that the logic to calculate the Prev_Qty is if the current Prev_week equals to Date in prior row, then the Prev_Qty equals to the Qty in prior row?
If so, to achieve your requirement you can refer to following steps:
Prev_Qty =
IF (
LOOKUPVALUE ( Table4[Date], Table4[Index], Table4[Index] - 1 )
= Table4[Prev_week],
LOOKUPVALUE ( Table4[Qty], Table4[Index], Table4[Index] - 1 ),
0
)
Thanks,
Xi Jin.
In your scenario, did you mean that the logic to calculate the Prev_Qty is if the current Prev_week equals to Date in prior row, then the Prev_Qty equals to the Qty in prior row?
If so, to achieve your requirement you can refer to following steps:
Prev_Qty =
IF (
LOOKUPVALUE ( Table4[Date], Table4[Index], Table4[Index] - 1 )
= Table4[Prev_week],
LOOKUPVALUE ( Table4[Qty], Table4[Index], Table4[Index] - 1 ),
0
)
Thanks,
Xi Jin.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 48 | |
| 38 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 77 | |
| 35 | |
| 28 | |
| 25 |