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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
gempar
Frequent Visitor

Help creating a new percentage measure: countif equivalent to generate a percentage

Hi, Hoping someone can help me with a formula for PowerBI which I would usually use countif for in excel. 

 

I have a column containing results as either "yes" or "no".  I need to calculate a new measure - the percentage of "no" values. 

 

In excel I would use a count of "no", divided by the count of all values:

=COUNTIF(C1:C1006,"No")/COUNTA(C2:C1006)

 

How would I write a similar formula in Power BI?  What are the equivalent functions? 

 

Thank you!

1 ACCEPTED SOLUTION
Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @gempar

 

Something like this should be close.  Just upcate the Table and ColumnName to your own column and give it a whirl

 

Measure = DIVIDE(
			COUNTROWS(FILTER('Table','Table'[ColumnName]="No")),
			COUNTROWS('Table')
			)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

3 REPLIES 3
Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @gempar

 

Something like this should be close.  Just upcate the Table and ColumnName to your own column and give it a whirl

 

Measure = DIVIDE(
			COUNTROWS(FILTER('Table','Table'[ColumnName]="No")),
			COUNTROWS('Table')
			)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

 Hey @Phil_Seamark,

 

I've tried this measure & it doesn't seem to work when the pivot table rows are from a different table. Every row shows the same total. It does work when aggregating using fields from the same table as the Driving Local YN column (Trips).

 

 - The Expense Customer PRO ID field in the pivot table image is from a different table called 'Trip Expenses'.

 - The Driving Local YN column has the values Y, N or blank, so I used COUNTA for the denominator so it won't count blank values and skew the numbers.

 - The tables are linked together in the model by a Trip ID column.

 

I've tried everything on the internet and can't get it to work. Any help would be immensely appreciated.

 

Let me know if you need any more information to help & thank you for your time.

 

 

driving local 2.png

 

driving local.png

Thank you very much!

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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