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

CountIF Measure with Multiple Filter Critera

I have a table where Store Numbers are listed on the left, and then a calculated column determines whether a store is IP, IP & Analog, or Analog

 

IP & Analog would count both for IP and for Analog

 

I want to have a column that just shows IP when it is IP or IP & Analog, and Analog if it's Analog or IP & Analog

 

I then want to get a % IP by the entire count by using these 2 measures.

 

Here is what I Tried but I know I"m doing something wrong

IP Count = CALCULATE(COUNT('IP and Analog'[IP or Analog]),'IP and Analog'[IP or Analog]="IP", 'IP and Analog'[IP or Analog]= "IP & Analog")
 
Sample Table:

Store   IP Analog

1234     IP
1235     Analog
1236     IP & Analog
1237     IP
 
The count would look something like this
IP Count = 3 (IP, IP & Analog, IP)
Analog Count = 2 (Analog, IP & Analog)
1 ACCEPTED SOLUTION
v-danhe-msft
Employee
Employee

Hi @Anonymous ,

Based on my test, you could refer to below measures:

IP count = CALCULATE(COUNT(Table1[IP Analog]),FILTER('Table1','Table1'[IP Analog]="IP"||'Table1'[IP Analog]="IP & Analog"))
Analog count = CALCULATE(COUNT(Table1[IP Analog]),FILTER('Table1','Table1'[IP Analog]="Analog"||'Table1'[IP Analog]="IP & Analog"))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-danhe-msft
Employee
Employee

Hi @Anonymous ,

Based on my test, you could refer to below measures:

IP count = CALCULATE(COUNT(Table1[IP Analog]),FILTER('Table1','Table1'[IP Analog]="IP"||'Table1'[IP Analog]="IP & Analog"))
Analog count = CALCULATE(COUNT(Table1[IP Analog]),FILTER('Table1','Table1'[IP Analog]="Analog"||'Table1'[IP Analog]="IP & Analog"))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jsh121988
Employee
Employee

 

I would suggest creating a calculated column for IP and Analog, then SUM each individually. The problem is IP & Analog overlaps into both catagories.

IP_Bool = IF('IP and Analog'[IP or Analog] IN {"IP", "IP & Analog"}, 1, BLANK())
Analog_Bool = IF('IP and Analog'[IP or Analog] IN {"Analog", "IP & Analog"}, 1, BLANK())

If you want to do 2 measures instead, then just use this filter logic:

 

 

IP_Count = 
CALCULATE(
COUNTROWS('IP and Analog'), FILTER('IP and Analog', 'IP and Analog'[IP or Analog] IN {"IP", "IP & Analog"}) )
Analog_Count = 
CALCULATE(
    COUNTROWS('IP and Analog'),
    FILTER('IP and Analog', 'IP and Analog'[IP or Analog] IN {"Analog", "IP & Analog"})
)

 

 

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.