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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
On Power BI I have a Inventory that have a lot of requests of the same Item and the same Date. For this reason I need to make an status telling me if that inventory will be anough or not for those requests
For Now I just have the first Part:
@Pedro_Gomes , If you need a new column
new column =
var _sum = sumx(filter(Table, Table[item] = earlier([item]) && [Date] <= earlier([date]) ), [Inventory]+0 - [quantity])
return
if(_sum<= 0 , "No Inventory", "OK Inventory")
or
new column =
var _sum = sumx(filter(Table, Table[item] = earlier([item]) && [Date] <= earlier([date]) && Table[product] = earlier([product]) ), [Inventory]+0 - [quantity])
return
if(_sum<= 0 , "No Inventory", "OK Inventory")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 20 | |
| 12 | |
| 11 |