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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Count multiple criteria same column

Hi Experts

 

how would you count multiple items in the same column??? i am trying the following formula slightly stuck..

 

Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType]={"2","61"})

 

i want to count all case type with the following numbers:

2, 61, 67,68, 80, 112,113

1 ACCEPTED SOLUTION
Anonymous
Not applicable

You can either use IN or CONTAISNROW function.

 

Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType] IN {"2","61"})

 

Thansk

Raj

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

You can either use IN or CONTAISNROW function.

 

Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType] IN {"2","61"})

 

Thansk

Raj

Anonymous
Not applicable

Hi Raj...

Capture.PNG

getting the follwoing error

Hi @Anonymous,

 

 

The error is related with formats you nee to take the "" from your IN sintax, because you are converting the values to text, if your column is a number formatted it will not compare.

 

The answers provided by @Anonymous, should work.

 

Regards,

MFelix

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Anonymous
Not applicable

Thanks for the feedback, appreciated.

Anonymous
Not applicable

Right, both should work.

 

Case = CALCULATE(COUNTROWS(Case_Data),Case_Data[CaseType] IN {2,61})

 

Case = CALCULATE(COUNTROWS(Case_Data),CONTAINROWS( {2,62,61},Case_Data[CaseType])

 

Thanks
Raj

Good solve @Anonymous 👏👏👏👏👏👏

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.