COUNTIF Function in Power BI: 4 Critical Methods

By: Published: March 4, 2022

Power BI COUNTIF Function FI

Power BI is a set of software services, apps, and connectors that work together to transform disparate data sources into logical, visually immersive, and interactive insights. Your data could be in the form of an Excel spreadsheet or a collection of hybrid data warehouses that are both cloud-based and on-premises.

COUNTIF is such a prevalent Excel function that anyone transitioning to Power BI frequently encounters the question, “How can I execute a COUNTIF in Power BI?”. In contrast to Excel, Power BI does not include cells where the COUNTIF formula can be typed. Instead, practically everything in Power BI is based on filter contexts.

In this post, you will learn how to write COUNTIF Power BI using DAX in various methods.

Table Of Contents

What is Power BI?

Microsoft’s Power BI is a Business Analytics service that allows you to display data and share findings. It creates dynamic dashboards and Business Intelligence reports by converting data from many sources.

Suppose you have some sales data in an excel sheet, as you can see above. Power BI helps you see the data by allowing you to create various charts and graphs.

Key Features of Power BI

  • Power BI has access to large volumes of data from various sources.
  • It has interactive UX/UI features and makes things visually appealing.
  • Power BI has exceptional Excel integration.
  • It accelerates the Big Data preparation with Microsoft Azure by allowing you to analyze and access huge volumes of data.
  • Power BI allows you to gain insights on data and changes those into actions to make data-driven decisions.
  • Power BI allows you to perform Real-time Stream Analytics.
Simplify Power BI’s ETL & Data Analysis with Hevo’s No-code Data Pipeline

Hevo Data, a No-code Data Pipeline, helps load data from any data source such as Databases, SaaS applications, Cloud Storage, SDK,s, and Streaming Services and simplifies the ETL process. It supports 100+ Data Sources such as Power BI, including 40+ Free Sources. It is a 3-step process by just selecting the data source, providing valid credentials, and choosing the destination. 

Hevo loads the data onto the desired Data Warehouse/destination in real-time and enriches the data and transforms it into an analysis-ready form without having to write a single line of code. Its completely automated pipeline, fault-tolerant, and scalable architecture ensure that the data is handled in a secure, consistent manner with zero data loss and supports different forms of data. The solutions provided are consistent and work with different BI tools as well.

GET STARTED WITH HEVO FOR FREE

Check out why Hevo is the Best:

  • Secure: Hevo has a fault-tolerant architecture that ensures that the data is handled securely and consistently with zero data loss.
  • Schema Management: Hevo takes away the tedious task of schema management & automatically detects the schema of incoming data and maps it to the destination schema.
  • Minimal Learning: Hevo, with its simple and interactive UI, is extremely simple for new customers to work on and perform operations.
  • Hevo Is Built To Scale: As the number of sources and the volume of your data grows, Hevo scales horizontally, handling millions of records per minute with very little latency.
  • Incremental Data Load: Hevo allows the transfer of data that has been modified in real-time. This ensures efficient utilization of bandwidth on both ends.
  • Live Support: The Hevo team is available round the clock to extend exceptional support to its customers through chat, email, and support calls.
  • Live Monitoring: Hevo allows you to monitor the data flow and check where your data is at a particular point in time.

Simplify your Data Analysis with Hevo today! SIGN UP HERE FOR A 14-DAY FREE TRIAL!

What is Power BI COUNTIF Function?

COUNTIF is a logical function that counts the values in a range based on the given conditions. Because there isn’t an easy COUNTIF function in Power BI, you might not understand the logic of using it. However, we can still use the same logical function in Power BI COUNTIF.

Those who have used COUNTIF in Excel might find it easy because it is a built-in function. However, Power BI does not have a built-in COUNTIF function. Users face a problem here since they must grasp at least three different DAX functions to do one task.

For example, take a look at the following data range in Excel:

Suppose you want to count how many times the country “Canada” has appeared. In this case, the criteria is the country “Canada”. Similarly, you can count values based on different criteria. 

How to Apply Power BI COUNTIF Function?

Since there is no built-in COUNTIF function in Power BI, you need to apply a couple of other functions to finish the job.

The first table has a “country-wise” sales value and the second one has a unique country list. So you get the count of the unique countries from the first one.

Follow the steps given below to apply the Power BI COUNTIF function:

  • Step 1: Upload the tables to Power BI.
  • Step 2: Out of the two tables uploaded: Data Table and List, Right-click on List and select New Column.
  • Step 3: Name the new column.
  • Step 4: Open the Calculate function.
  • Step 5: For the expression, open the COUNTA function.
  • Step 6: For the column name, choose the Country column from Data Table.
  • Step 7: Close the bracket and for the next argument, open the Filter function.
  • Step 8: The first argument of the Filter function is a table, so choose Data Table because you need to count the country column.
  • Step 9: For Filter Expression, choose Country Column from Data Table.
  • Step 10: Now, put an equal sign and choose Country from the List table. This is to count countries based on the unique list in the List Table.
  • Step 11: Close the brackets and press Enter.

Alternate Method to Apply Power BI COUNTIF Function

There is an alternate method to get the country count just like the COUNTIF function i.e. using the COUNT ROWS method.

  • Step 1: Right-click on New Column.
  • Step 2: Name the column differently than the previous time ( like in the previous method).
  • Step 3: Open the COUNTROWS function.
  • Step 4: Open the FILTER function again.
  • Step 5: Choose the Data Table.
  • Step 6: For Filter Expression, follow the method that you did in the previous example.

You now have the count of each country from the Data Table. Similarly, by using a combination of DAX formulas, you can replicate the Power BI COUNTIF function.

Understanding the Methods of Implementing Power BI COUNTIF Function

Here are 4 ways of implementing Power BI COUNTIF Function:

Power BI COUNTIF Function: Using a Visual

Consider the following Sales data as sample data. It has 4 columns.

To count the number of transactions in each channel follow the given steps:

  • Step 1: Make a Matrix Visual.
  • Step 2: Drag the channel from the Sales Table in Rows.
  • Step 3: Drag any other column from Values, change the calculation to COUNT, and change the field name.

Power BI COUNTIF Function: Using a Measure

Dragging a column to the pivot table is looked down upon in Power BI because columns are expensive. A better method would be to create measures. Here are two measures that do the same work:

Transaction Count Measure 1 = COUNTA(Sales[Date])
Transaction Count Measure 2 = COUNTROWS(Sales)

In the above measures:

  • COUNTROWS only counts the number of rows.
  • COUNTA counts the number of values. Null values are excluded.

Since in this situation there are no null values, both measures will give the same output.

Power BI COUNTIF Function: In a Fact Table

Consider this Sales table again:

Suppose you want to add a column to this table to count the frequency of dates. Unfortunately, you cannot do that by using =COUNTIF in PowerBI because it does not exist. But, you can use the DAX formula like the following:

COUNTIF for Duplicate Dates =
VAR __CurrentRowID = Sales[Date]
RETURN
COUNTROWS(
    FILTER(
    	ALL(Sales),
    	__CurrentRowID = Sales[Date]
	)
)

The above code is explained below:

  • Step 1: The variable DuplicateDates captures the current row dates.
  • Step 2: In the FILTER function, the whole Sales Table is expanded using ALL, and then checking how many dates match with variable.
  • Step 3: Wrap the COUNTROWS function in the FILTER function.

The above piece of code gives the following output:

You can also write the DAX code differently without using variables. The code is shown below:

COUNTIF for Duplicate Dates with Variable =
COUNTROWS(
    FILTER(
    	ALL(Sales),
    	EARLIER(Sales[Date]) = Sales[Date]
    )
)

This code will also give the same output. An additional complexity would be to do the Power BI COUNTIF function with two conditions. This is called COUNTIFS in Excel.

Another example would be If you wanted to rows have the same Product ID and Channel?

The logic for this is similar as the above code, the only difference being we add two conditions using the && operator. Take a look at the code:

COUNTIF for Same Prod & Channel =
COUNTROWS(
    FILTER(
    	ALL(Sales),
    	Sales[Product ID]=EARLIER(Sales[Product ID]) &&
    	Sales[Channel] = EARLIER(Sales[Channel])
    )
)

The same code can also be written by making use of Variables:

COUNTIF for Same Prod & Channel using Variables =
VAR __CurrProd = Sales[Product ID]
VAR __CurrChannel = Sales[Channel]
RETURN
COUNTROWS(
    FILTER(
    	ALL(Sales),
    	Sales[Product ID]=__CurrProd &&
    	Sales[Channel] = __CurrChannel
    )
)

The results for the above code snippets are shown below:

Power BI COUNTIF Function: In the Look-Up Table

Another method people generally try to do is writing the Power BI COUNTIF function in the Lookup Table. For example, you have another table Products which is linked to Sales Table using Product ID as a common column.

This is how the relationship between the two is set up:

Power BI COUNTIF Function: Relationship table
Image Source

Suppose you want to create a table in the Products table to find the number of products sold in the Sales Table.

Since a relationship already exists between the two tables, you can easily solve this using the RELATEDTABLE function.

Note: The RELATEDTABLE function is mostly used in the Lookup Table, but the RELATED table is used in the Fact Table.

The DAX code for the above problem statement:

COUNTIF for Prod Sold in Sales Table =
COUNTROWS(RELATEDTABLE(Sales))

Here is the explanation for the above code:

  • Step 1: RELATEDTABLE function returns a Table with matching rows from Sales Table.
  • Step 2: Wrap RELAREDTABLE function in COUNTROWS function.
Power BI COUNTIF Function: RelatedTable
Image Source

Conclusion

In most cases, instead of establishing columns in your tables, you should create measures. However, if you need to build columns for testing or other strange calculations, you can use this guide for help. This article covered various Power BI COUNTIF Functions and the different ways to use them with suitable examples. By harnessing the COUNTIF function in Power BI through various methods such as ‘COUNTIF Power BI,’ ‘Power BI COUNTIF,’ and more, you can unlock a new level of precision in data analysis and reporting.

However, as a Developer, extracting complex data from a diverse set of data sources like Databases, CRMs, Project management Tools, Streaming Services, Marketing Platforms to Power BI can seem to be quite challenging. If you are from non-technical background or are new in the game of data warehouse and analytics, Hevo Data can help!

Visit our Website to Explore Hevo

Hevo Data will automate your data transfer process, hence allowing you to focus on other aspects of your business like Analytics, Customer Management, etc. This platform allows you to transfer data from 100+ multiple sources to Cloud-based Data Warehouses like Snowflake, Google BigQuery, Amazon Redshift, etc. It will provide you with a hassle-free experience and make your work life much easier.

Want to take Hevo for a spin? Sign Up for a 14-day free trial and experience the feature-rich Hevo suite first hand.

You can also have a look at our unbeatable pricing that will help you choose the right plan for your business needs!

mm
Former Content Writer, Hevo Data

Sharon is a data science enthusiast with a passion for data, software architecture, and writing technical content. She has experience writing articles on diverse topics related to data integration and infrastructure.

No-Code Data Pipeline for Power BI