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!View all the Fabric Data Days sessions on demand. View schedule
Hey everyone,
I need a power BI equivalent of excel COUNTIF function, like in the image attached below DAX should be row wise.
Any ideas?
Many thanks.
Solved! Go to Solution.
@Anonymous
In your scenario, you need to check columns from Sales to Profit. There's no ":" to select multiple columns in DAX, you have to apply condition on all columns in your calculated column like below:
Column=
IF (
Table[Sales] = 0
|| Table[Quantity] = 0
|| Table[Discount] = 0
|| Table[Profit] = 0,
1,
0
)
Regards,
@Anonymous
In your scenario, you need to check columns from Sales to Profit. There's no ":" to select multiple columns in DAX, you have to apply condition on all columns in your calculated column like below:
Column=
IF (
Table[Sales] = 0
|| Table[Quantity] = 0
|| Table[Discount] = 0
|| Table[Profit] = 0,
1,
0
)
Regards,
Yes, just you do it differently. You would count each column separately. Here is an example for you:
CountIFLike = CALCULATE(
countrows('MyTable'),
not 'Mytable'[MyField] = 0
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!