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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |