Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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")
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |