The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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")
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |