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

Need Count problem with condition

I have to write one measure which counts the number of Rows, but it should have two type of Filter. 

 

Like the below image: We need count via Company wise. But should have 2 conditions 

 

1. For company C1 and E1 we need check Cases number =1 and Admission  = "N"

2. Rest of other company we need to check Case Number = 1

 

Can you please help me how I write measurer to calculate a count. 

 

Screenshot_4.png

 

 

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

try this

Measure = 
VAR C1_E1_filter = FILTER('Table','Table'[Company] in {"C1","E1"} && 'Table'[Admission] = "N" && 'Table'[# Cases] =1)
VAR C1_E1 = CALCULATE(COUNTROWS('Table'),C1_E1_filter)
VAR Else_filter = FILTER('Table','Table'[Company]<>"C1" && 'Table'[Company]<>"E1" && 'Table'[Admission] = "N")
VAR Else_value = CALCULATE(COUNTROWS('Table'),Else_filter)
RETURN
C1_E1+Else_value


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

2 REPLIES 2
Stachu
Community Champion
Community Champion

try this

Measure = 
VAR C1_E1_filter = FILTER('Table','Table'[Company] in {"C1","E1"} && 'Table'[Admission] = "N" && 'Table'[# Cases] =1)
VAR C1_E1 = CALCULATE(COUNTROWS('Table'),C1_E1_filter)
VAR Else_filter = FILTER('Table','Table'[Company]<>"C1" && 'Table'[Company]<>"E1" && 'Table'[Admission] = "N")
VAR Else_value = CALCULATE(COUNTROWS('Table'),Else_filter)
RETURN
C1_E1+Else_value


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Anonymous
Not applicable

Thanks, it works... 

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.