Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello,
I have a list of products and the available inventory for each product on a specific day. I simply want to count the product when the available inventory is > 0, but it returns the full count of products, no matter the qty.
I've done various forms of Counts, this is the current one:
Solved! Go to Solution.
Hi @cassidy ,
Count Stock =
COUNTROWS (
FILTER ('Product Details',[Avail Status Units BOW (calc)] >0 )
)
Please share sample data if this does not work.
Regards,
HN
Use an IF statement?
InStockCount =
var v_bow = CALCULATE(SUM('Table'[Avail Status BOW])) // your calculation
return
IF(v_bow>0;1;0)
Proud to be a Super User!
Awesome Keyboard Shortcusts in Power BI, thumbs up if you like the article
My Community Blog Articles (check them out!)
My Blog - Power M code to automatically detect column types -
How to create test data using DAX!
Hi @cassidy ,
Count Stock =
COUNTROWS (
FILTER ('Product Details',[Avail Status Units BOW (calc)] >0 )
)
Please share sample data if this does not work.
Regards,
HN
@harshnathani , this seems to work! Thanks
Are you able to easily explain why mine did not work? I thought I was counting rows with the COUNTX.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |