Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi guys,
I been stuck on this for a couple of days now. Using power query I am working on a picking line inventory restocking. The whole idea is to get products on the picking line on certain order.
This is my original table :
ProductoId | Available | RestockingNeed |
11 | 150 | 160 |
11 | 1200 | 160 |
11 | 2500 | 160 |
This is what i am looking for:
ProductoId | Available | Restocking | Restock |
11 | 150 | 160 | 150 |
11 | 1200 | 10 | 10 |
11 | 2500 | null |
I am looking to get back the Restock column.
I any of you can help out here it would be great.
I have been trying to adapt the solution
thanks.
Reynaldo
Solved! Go to Solution.
hi, @reynaldo_malave try this
let
Source = your_table,
recs = List.Buffer(Table.ToRecords(Source)),
count = List.Count(recs),
g =
List.Generate(
() =>
[i = 0,
Productold = recs{0}[ProductoId],
Available = recs{0}[Available],
Restocking = recs{0}[RestockingNeed],
Restock = List.Min({Restocking, Available})],
(x) => x[i] < count,
(x) =>
[i = x[i] + 1,
Productold = recs{i}[ProductoId],
Available = recs{i}[Available],
Restocking = List.Max({0, x[Restocking] - x[Restock]}),
Restock = List.Min({Available, Restocking})]
),
z = Table.RemoveColumns(Table.FromRecords(g), {"i"})
in
z
hi, @reynaldo_malave try this
let
Source = your_table,
recs = List.Buffer(Table.ToRecords(Source)),
count = List.Count(recs),
g =
List.Generate(
() =>
[i = 0,
Productold = recs{0}[ProductoId],
Available = recs{0}[Available],
Restocking = recs{0}[RestockingNeed],
Restock = List.Min({Restocking, Available})],
(x) => x[i] < count,
(x) =>
[i = x[i] + 1,
Productold = recs{i}[ProductoId],
Available = recs{i}[Available],
Restocking = List.Max({0, x[Restocking] - x[Restock]}),
Restock = List.Min({Available, Restocking})]
),
z = Table.RemoveColumns(Table.FromRecords(g), {"i"})
in
z
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
7 | |
7 |
User | Count |
---|---|
13 | |
11 | |
9 | |
6 | |
6 |