Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Is Row wise COUNTIF possible in powerBI?

 

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?

 

IsPossible.PNG

 

Many thanks.

1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@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,

 

View solution in original post

2 REPLIES 2
v-sihou-msft
Employee
Employee

@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
Not applicable

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
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.