March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have in table "Products" a simple column with one cell:
Products |
1250 |
And other table "dates"
demand | offer | stock |
1321 | 1200 | 1250+1321-1200 |
2132 | 2023 | 1371+2132-2023 |
And I need to fill the column stock with the value 1250 from table Products and then add 1321 - 1200 for the first cell, then with this value 1250+1321-1200= 1371 I need to do the same procedure, but for the next rows down, how can I take the value of the previous cell in the same column and work from it?
Solved! Go to Solution.
Hi @nicolasvc ,
Add an index column. Transform data>> Add column>>From 1
Create a column.
stock = calculate(sum('dates table'[demand])-sum('dates table'[offer])+MAX(products[Products]),FILTER('dates table',[index]<=EARLIER('dates table'[Index])))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards
Community Support Team _ Polly
Hi @nicolasvc ,
Add an index column. Transform data>> Add column>>From 1
Create a column.
stock = calculate(sum('dates table'[demand])-sum('dates table'[offer])+MAX(products[Products]),FILTER('dates table',[index]<=EARLIER('dates table'[Index])))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards
Community Support Team _ Polly
Thanks very much! I really appreciate it.
Hi @nicolasvc ,
Does the "dates" table provide a product_id and a date to sort by?
How are the products and dates tables related?
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |