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.
I'm writing a formula that I want to work like this: (item_inventory - sum of Quantity on SO) IF >20 then Drop in "In Stock", if <20 then Drop in "Out of Stock"
Here is my formula so far:
Solved! Go to Solution.
You can use the below:
Inventory Status = IF((SUM('items'[Inventory]) - SUM('Sales_Lines'[Quantity on SO]))>20,"In Stock","Out of Stock" )
Thanks so much, that worked!
You can use the below:
Inventory Status = IF((SUM('items'[Inventory]) - SUM('Sales_Lines'[Quantity on SO]))>20,"In Stock","Out of Stock" )
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
99 | |
92 | |
50 | |
47 | |
46 |